1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

curl_sasl.c: chlglen is not used when cryptography is disabled

This commit is contained in:
Steve Holme 2015-01-20 19:28:54 +00:00
parent 71f8fdee81
commit 795f013006

View File

@ -1452,9 +1452,9 @@ CURLcode Curl_sasl_continue(struct SASL *sasl, struct connectdata *conn,
char *resp = NULL;
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
char *serverdata;
size_t chlglen = 0;
#endif
size_t len = 0;
size_t chlglen = 0;
*progress = SASL_INPROGRESS;