]> granicus.if.org Git - apache/commitdiff
Clean up a yet a couple more emits
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 10 Apr 2001 20:45:39 +0000 (20:45 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 10 Apr 2001 20:45:39 +0000 (20:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88798 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_digest.c

index 4359620549cec6334744d39d61007a1d158ba0fb..b2afb89bb8055fc94d79f3fb46b4068fbc553e47 100644 (file)
@@ -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];