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:
Steve Holme 2015-01-20 19:25:43 +00:00
parent 6005b0d99c
commit 71f8fdee81
1 changed files with 2 additions and 0 deletions

View File

@ -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;