diff options
-rw-r--r-- | lib/hmac.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/hmac.c b/lib/hmac.c index 1d3ea8342..8fa224beb 100644 --- a/lib/hmac.c +++ b/lib/hmac.c @@ -22,9 +22,10 @@ * ***************************************************************************/ +#include "setup.h" + #ifndef CURL_DISABLE_CRYPTO_AUTH -#include "setup.h" #include "curl_hmac.h" /* @@ -120,4 +121,4 @@ int Curl_HMAC_final(HMAC_context * ctxt, unsigned char * result) return 0; } -#endif +#endif /* CURL_DISABLE_CRYPTO_AUTH */ |