Skip to content

Commit

Permalink
curl_sasl.c: Fixed compilation warning when cyptography is disabled
Browse files Browse the repository at this point in the history
curl_sasl.c:1453: warning C4101: 'serverdata' : unreferenced local
                  variable
  • Loading branch information
captain-caveman2k committed Jan 20, 2015
1 parent 6005b0d commit 71f8fde
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/curl_sasl.c
Expand Up @@ -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;

Expand Down

0 comments on commit 71f8fde

Please sign in to comment.