]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Save a few bytes in conf pool
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 26 May 2015 05:57:36 +0000 (05:57 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 26 May 2015 05:57:36 +0000 (05:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681685 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_basic.c

index 58ea021462fee5331a36081190acd2b4ca0fd2c1..15d7bb9e809a93f1cc76c82dec3745ac1e51a103 100644 (file)
@@ -191,7 +191,7 @@ static const char *set_use_digest_algorithm(cmd_parms *cmd, void *config,
                            "AuthBasicUseDigestAlgorithm: ", alg, NULL);
     }
 
-    conf->use_digest_algorithm = apr_pstrdup(cmd->pool, alg);
+    conf->use_digest_algorithm = alg;
     conf->use_digest_algorithm_set = 1;
 
     return NULL;