Skip to content
Snippets Groups Projects
Commit 9bd37a6d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

sasl: fix compiler warning

error: unused variable 'table16'
parent 1be69159
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment