Commit da2d3b58 authored by Anders Bakken's avatar Anders Bakken Committed by Jay Satiro
Browse files

des: Fix header conditional for Curl_des_set_odd_parity

Follow up to 613e5022.
parent 3771da33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@

#include "curl_setup.h"

#if defined(USE_NTLM) && (!defined(USE_OPENSSL) || defined(HAVE_BORINGSSL))
#if defined(USE_NTLM) && !defined(HAVE_DES_SET_ODD_PARITY)

/* Applies odd parity to the given byte array */
void Curl_des_set_odd_parity(unsigned char *bytes, size_t length);