mirror of
https://github.com/curl/curl.git
synced 2025-09-23 20:46:48 +03: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 SessionHandle;
|
||||||
struct connectdata;
|
struct connectdata;
|
||||||
|
|
||||||
|
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
|
||||||
|
struct digestdata;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(USE_NTLM)
|
||||||
struct ntlmdata;
|
struct ntlmdata;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(USE_KRB5)
|
#if defined(USE_KRB5)
|
||||||
struct kerberos5data;
|
struct kerberos5data;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user