1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Fix "unused variable" warning.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1494532 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2013-06-19 10:16:35 +00:00
parent 67e9e54493
commit aa4befc8b9

View File

@@ -445,9 +445,9 @@ static void *create_digest_dir_config(apr_pool_t *p, char *dir)
static const char *set_realm(cmd_parms *cmd, void *config, const char *realm)
{
digest_config_rec *conf = (digest_config_rec *) config;
#ifdef AP_DEBUG
int i;
#ifdef AP_DEBUG
/* check that we got random numbers */
for (i = 0; i < SECRET_LEN; i++) {
if (secret[i] != 0)