mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
curl_sasl.c: Fixed compilation warning when cyptography is disabled
curl_sasl.c:1453: warning C4101: 'serverdata' : unreferenced local variable
This commit is contained in:
parent
6005b0d99c
commit
71f8fdee81
@ -1450,7 +1450,9 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn,
|
|||||||
saslstate newstate = SASL_FINAL;
|
saslstate newstate = SASL_FINAL;
|
||||||
char *chlg = NULL;
|
char *chlg = NULL;
|
||||||
char *resp = NULL;
|
char *resp = NULL;
|
||||||
|
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
|
||||||
char *serverdata;
|
char *serverdata;
|
||||||
|
#endif
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
size_t chlglen = 0;
|
size_t chlglen = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user