diff options
author | Yang Tse <yangsita@gmail.com> | 2010-04-20 21:35:31 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-04-20 21:35:31 +0200 |
commit | 81512cc02b92c2d6deaf9461617c89d49f44310f (patch) | |
tree | 9b78efea0488df96b921229a5693f7931e70e59e /lib/hmac.c | |
parent | 32236dad5e8297fd8fd045dd74af80490d1f864e (diff) | |
download | curl-81512cc02b92c2d6deaf9461617c89d49f44310f.tar.gz |
hmac.c related compilation adjustment
Diffstat (limited to 'lib/hmac.c')
-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 */ |