mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
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:
parent
259f4f3d01
commit
f4af38120a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user