Skip to content

Commit

Permalink
Save a few bytes in conf pool
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681685 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Christophe Jaillet committed May 26, 2015
1 parent 8effecc commit d0249fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aaa/mod_auth_basic.c
Expand Up @@ -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;
Expand Down

0 comments on commit d0249fe

Please sign in to comment.