mirror of
https://github.com/curl/curl.git
synced 2026-07-24 04:47:17 +03:00
sasl: fix compiler warning
error: unused variable 'table16'
This commit is contained in:
parent
1be69159f3
commit
9bd37a6d27
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue