sasl: fix compiler warning
authorDaniel Stenberg <daniel@haxx.se>
Wed, 23 Oct 2013 20:28:13 +0000 (22:28 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 23 Oct 2013 20:28:13 +0000 (22:28 +0200)
error: unused variable 'table16'

lib/curl_sasl.c

index f097fca..d399d6a 100644 (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;