aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_ntlm_msgs.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-10-03 23:03:59 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-10-03 23:28:17 +0200
commitd0dbd1e98e9b8f4624b33ffcd91a55e7d0f78fa9 (patch)
tree6c2f9414bc4a49a6e2761fbcc562ab6c64cb756d /lib/curl_ntlm_msgs.h
parent4d327d20c62d856c45f8ecf84d16fd7804ace0f1 (diff)
sspi build fix
define away Curl_ntlm_sspi_cleanup() when no windows SSPI build
Diffstat (limited to 'lib/curl_ntlm_msgs.h')
-rw-r--r--lib/curl_ntlm_msgs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/curl_ntlm_msgs.h b/lib/curl_ntlm_msgs.h
index 6b6ea2a71..7acf7229f 100644
--- a/lib/curl_ntlm_msgs.h
+++ b/lib/curl_ntlm_msgs.h
@@ -49,6 +49,8 @@ CURLcode Curl_ntlm_decode_type2_message(struct SessionHandle *data,
/* This is to clean up the ntlm data structure */
#ifdef USE_WINDOWS_SSPI
void Curl_ntlm_sspi_cleanup(struct ntlmdata *ntlm);
+#else
+#define Curl_ntlm_sspi_cleanup(x)
#endif
/* NTLM buffer fixed size, large enough for long user + host + domain */