sasl: Fixed compilation warning from commit 25264131e2

Added forward declaration of digestdata to overcome the following
compilation warning:

warning: 'struct digestdata' declared inside parameter list

Additionally made the ntlmdata forward declaration dependent on
USE_NTLM similar to how digestdata and kerberosdata are.
This commit is contained in:
Steve Holme 2014-11-05 18:20:01 +00:00
parent 259f4f3d01
commit f4af38120a

View File

@ -26,7 +26,14 @@
struct SessionHandle;
struct connectdata;
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
struct digestdata;
#endif
#if defined(USE_NTLM)
struct ntlmdata;
#endif
#if defined(USE_KRB5)
struct kerberos5data;