diff options
author | Rainer Jung <rjung@apache.org> | 2013-06-19 12:16:35 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2013-06-19 12:16:35 +0200 |
commit | aa4befc8b9ae4dcf54630972e70bd2e0e3b07d08 (patch) | |
tree | 1f573a36b3ad21c01d3defc9d9c1f74f9e09fe2b | |
parent | Fix "unused variable" warning. (diff) | |
download | apache2-aa4befc8b9ae4dcf54630972e70bd2e0e3b07d08.tar.xz apache2-aa4befc8b9ae4dcf54630972e70bd2e0e3b07d08.zip |
Fix "unused variable" warning.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1494532 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/aaa/mod_auth_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 3b48cbbdf5..e7645a4754 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -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) |