Skip to content
Snippets Groups Projects
Commit 347a6ee5 authored by Steve Holme's avatar Steve Holme
Browse files

des: Fixed compilation warning from commit 613e5022

curl_ntlm_core.c:150: warning 'Curl_des_set_odd_parity' undefined;
                      assuming extern returning int
parent 2a59fb25
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......@@ -29,6 +29,6 @@
/* Applies odd parity to the given byte array */
void Curl_des_set_odd_parity(unsigned char *bytes, size_t length);
#endif /* USE_NTLM && (!USE_OPENSSL || HAVE_BORINGSSL) */
#endif /* USE_NTLM && !HAVE_DES_SET_ODD_PARITY */
#endif /* HEADER_CURL_DES_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment