diff options
author | Jeff Trawick <trawick@apache.org> | 2014-05-19 14:24:06 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2014-05-19 14:24:06 +0200 |
commit | 048df00d71fab24f92464a45719e4f5fd452d340 (patch) | |
tree | d1c51186feba674c84b4b716e77079e4e598c473 /modules/ssl/ssl_ct_log_config.c | |
parent | Second try adding mod_dumpio.html.fr. (diff) | |
download | apache2-048df00d71fab24f92464a45719e4f5fd452d340.tar.xz apache2-048df00d71fab24f92464a45719e4f5fd452d340.zip |
Follow-up to r1588987:
Fix doc and code confusion about the trust/distrust flag; 1 is
distrust, 0 or NULL/- is trust.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1595861 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/ssl/ssl_ct_log_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/ssl_ct_log_config.c b/modules/ssl/ssl_ct_log_config.c index de068ca57d..1f8c740816 100644 --- a/modules/ssl/ssl_ct_log_config.c +++ b/modules/ssl/ssl_ct_log_config.c @@ -203,7 +203,7 @@ apr_status_t save_log_config_entry(apr_array_header_t *log_config, distrusted = DISTRUSTED; } else if (!strcasecmp(distrusted_str, "0")) { - distrusted = DISTRUSTED; + distrusted = TRUSTED; } else { ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf, |