From: William A. Rowe Jr Date: Tue, 10 Apr 2001 20:45:39 +0000 (+0000) Subject: Clean up a yet a couple more emits X-Git-Tag: 2.0.17~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cba2e14a898460962f484337ab425494135b47c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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];