From: Steve Holme Date: Thu, 14 Aug 2014 14:50:55 +0000 (+0100) Subject: curl_sasl.h: Fixed compilation error from commit 4b491c675f X-Git-Tag: curl-7_38_0~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cff0757c31abd65c76eb02c250cb3849065eb20c;p=thirdparty%2Fcurl.git curl_sasl.h: Fixed compilation error from commit 4b491c675f warning: 'struct kerberos5data' declared inside parameter list Due to missing forward declaration. --- diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index 6957ee1345..e56fa1a5fd 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