summaryrefslogtreecommitdiff
path: root/lib/curl_sasl.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-08-14 15:50:55 +0100
committerSteve Holme <steve_holme@hotmail.com>2014-08-14 15:53:33 +0100
commitcff0757c31abd65c76eb02c250cb3849065eb20c (patch)
treeec779de46422b793c50231f8d61baa8bac3af71b /lib/curl_sasl.h
parentb5c56190b23f24e58fef4b0a9e8d2e850e3e52e1 (diff)
downloadcurl-cff0757c31abd65c76eb02c250cb3849065eb20c.tar.gz
curl_sasl.h: Fixed compilation error from commit 4b491c675f
warning: 'struct kerberos5data' declared inside parameter list Due to missing forward declaration.
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r--lib/curl_sasl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h
index 6957ee134..e56fa1a5f 100644
--- a/lib/curl_sasl.h
+++ b/lib/curl_sasl.h
@@ -28,6 +28,10 @@ struct SessionHandle;
struct connectdata;
struct ntlmdata;
+#if defined(USE_WINDOWS_SSPI)
+struct kerberos5data;
+#endif
+
/* Authentication mechanism values */
#define SASL_AUTH_NONE 0
#define SASL_AUTH_ANY ~0U