curl_sasl.c: Fixed compilation warning when cryptography is disabled

curl_sasl.c:1506: warning: unused variable 'chlg'
This commit is contained in:
Steve Holme 2015-01-29 11:48:11 +00:00
parent 6fdc8651bd
commit 8ca3b05624
1 changed files with 1 additions and 1 deletions

View File

@ -1503,10 +1503,10 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn,
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
saslstate newstate = SASL_FINAL;
char *chlg = NULL;
char *resp = NULL;
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
char *serverdata;
char *chlg = NULL;
size_t chlglen = 0;
#endif
size_t len = 0;