Skip to content

Commit

Permalink
curl_sasl.c: Fixed compilation warning when cryptography is disabled
Browse files Browse the repository at this point in the history
curl_sasl.c:1506: warning: unused variable 'chlg'
  • Loading branch information
captain-caveman2k committed Jan 29, 2015
1 parent 6fdc865 commit 8ca3b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/curl_sasl.c
Expand Up @@ -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;
Expand Down

0 comments on commit 8ca3b05

Please sign in to comment.