From cff0757c31abd65c76eb02c250cb3849065eb20c Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 14 Aug 2014 15:50:55 +0100 Subject: curl_sasl.h: Fixed compilation error from commit 4b491c675f warning: 'struct kerberos5data' declared inside parameter list Due to missing forward declaration. --- lib/curl_sasl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') 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 -- cgit v1.2.3