Commit f4af3812 authored by Steve Holme's avatar Steve Holme
Browse files

sasl: Fixed compilation warning from commit 25264131

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.
parent 259f4f3d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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;