From 5cba2e14a898460962f484337ab425494135b47c Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 10 Apr 2001 20:45:39 +0000 Subject: [PATCH] Clean up a yet a couple more emits git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88798 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_auth_digest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 4359620549c..b2afb89bb80 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -508,7 +508,7 @@ static const char *set_group_file(cmd_parms *cmd, void *config, static const char *set_qop(cmd_parms *cmd, void *config, const char *op) { digest_config_rec *conf = (digest_config_rec *) config; - const char **tmp; + char **tmp; int cnt; if (!strcasecmp(op, "none")) { @@ -1401,7 +1401,7 @@ static int check_nc(const request_rec *r, const digest_header_rec *resp, static int check_nonce(request_rec *r, digest_header_rec *resp, const digest_config_rec *conf) { - double dt; + apr_time_t dt; int len; time_rec nonce_time; char tmp, hash[NONCE_HASH_LEN+1]; -- 2.47.2