]> git.pld-linux.org Git - packages/dnsmasq.git/blob - dnsmasq-nettle-3.5.patch
- release 3, fix build against nettle-3.5
[packages/dnsmasq.git] / dnsmasq-nettle-3.5.patch
1 --- dnsmasq-2.80/src/crypto.c~  2018-10-18 20:21:55.000000000 +0200
2 +++ dnsmasq-2.80/src/crypto.c   2019-06-27 09:32:24.587948846 +0200
3 @@ -294,7 +294,7 @@
4           if (!(key_256 = whine_malloc(sizeof(struct ecc_point))))
5             return 0;
6           
7 -         nettle_ecc_point_init(key_256, &nettle_secp_256r1);
8 +         nettle_ecc_point_init(key_256, nettle_get_secp_256r1());
9         }
10        
11        key = key_256;
12 @@ -307,7 +307,7 @@
13           if (!(key_384 = whine_malloc(sizeof(struct ecc_point))))
14             return 0;
15           
16 -         nettle_ecc_point_init(key_384, &nettle_secp_384r1);
17 +         nettle_ecc_point_init(key_384, nettle_get_secp_384r1());
18         }
19        
20        key = key_384;
This page took 0.023366 seconds and 3 git commands to generate.