mirror of
https://github.com/curl/curl.git
synced 2026-04-18 10:01:40 +03: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
1 changed files with 2 additions and 0 deletions
|
|
@ -1450,7 +1450,9 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn,
|
|||
saslstate newstate = SASL_FINAL;
|
||||
char *chlg = NULL;
|
||||
char *resp = NULL;
|
||||
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
|
||||
char *serverdata;
|
||||
#endif
|
||||
size_t len = 0;
|
||||
size_t chlglen = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue