projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1be6915
)
sasl: fix compiler warning
author
Daniel Stenberg
<daniel@haxx.se>
Wed, 23 Oct 2013 20:28:13 +0000
(22:28 +0200)
committer
Daniel Stenberg
<daniel@haxx.se>
Wed, 23 Oct 2013 20:28:13 +0000
(22:28 +0200)
error: unused variable 'table16'
lib/curl_sasl.c
patch
|
blob
|
history
diff --git
a/lib/curl_sasl.c
b/lib/curl_sasl.c
index f097fca25e4978b682c1b800108f8625bd893101..d399d6a7e012fd806f7b03c56cb1402c20bf48e2 100644
(file)
--- a/
lib/curl_sasl.c
+++ b/
lib/curl_sasl.c
@@
-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;