diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-08-30 20:45:30 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-08-30 21:45:30 +0100 |
commit | 347a6ee597b05b1caf1b9e539e318fadb90ae558 (patch) | |
tree | d03533fa6d35f8c8054a41fa0e848aef649a54bd /lib/curl_des.c | |
parent | 2a59fb25cc74b9e317f82ac400f49331504eee2e (diff) | |
download | curl-347a6ee597b05b1caf1b9e539e318fadb90ae558.tar.gz |
des: Fixed compilation warning from commit 613e5022fe
curl_ntlm_core.c:150: warning 'Curl_des_set_odd_parity' undefined;
assuming extern returning int
Diffstat (limited to 'lib/curl_des.c')
-rw-r--r-- | lib/curl_des.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_des.c b/lib/curl_des.c index f90c2da60..62f7f6008 100644 --- a/lib/curl_des.c +++ b/lib/curl_des.c @@ -60,4 +60,4 @@ void Curl_des_set_odd_parity(unsigned char *bytes, size_t len) } } -#endif /* USE_NTLM && (!USE_OPENSSL || HAVE_BORINGSSL) */ +#endif /* USE_NTLM && !HAVE_DES_SET_ODD_PARITY */ |