sasl: fix compiler warning

error: unused variable 'table16'
This commit is contained in:
Daniel Stenberg 2013-10-23 22:28:13 +02:00
parent 1be69159f3
commit 9bd37a6d27
1 changed files with 2 additions and 1 deletions

View File

@ -268,8 +268,9 @@ CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
const char *service,
char **outptr, size_t *outlen)
{
#ifndef DEBUGBUILD
static const char table16[] = "0123456789abcdef";
#endif
CURLcode result = CURLE_OK;
unsigned char *chlg = (unsigned char *) NULL;
size_t chlglen = 0;