diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-09 22:56:17 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-09 22:57:22 +0200 |
commit | c7fb556f26f4ba8e29c6d98eed23478d5ce2efe1 (patch) | |
tree | 0139e70aaed3a6f0f8175d701b21fa0e3be54356 /lib/http_ntlm.h | |
parent | 5ed17de326765d4e18b7886b046b0c2f9ab363cb (diff) | |
download | curl-c7fb556f26f4ba8e29c6d98eed23478d5ce2efe1.tar.gz |
http NTLM: Further tiding up to libcurl standards
Diffstat (limited to 'lib/http_ntlm.h')
-rw-r--r-- | lib/http_ntlm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index 1cc751e34..179f08348 100644 --- a/lib/http_ntlm.h +++ b/lib/http_ntlm.h @@ -44,7 +44,11 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); CURLcode Curl_output_ntlm_sso(struct connectdata *conn, bool proxy); #endif +#ifdef USE_NTLM void Curl_http_ntlm_cleanup(struct connectdata *conn); +#else +#define Curl_http_ntlm_cleanup(x) +#endif /* Flag bits definitions based on http://davenport.sourceforge.net/ntlm.html */ |