diff options
author | rcritten <> | 2005-06-03 15:10:48 +0000 |
---|---|---|
committer | rcritten <> | 2005-06-03 15:10:48 +0000 |
commit | d99ab1ce72eb939dac63b701598a9ae6df69bdef (patch) | |
tree | 0d50daeb7f2ecc158ebebca41aca1447e7c7c6ad /nss_engine_init.c | |
parent | 62d308e4fba7d08cb15856c1ea68e3126df42eb1 (diff) | |
download | mod_nss-d99ab1ce72eb939dac63b701598a9ae6df69bdef.tar.gz mod_nss-d99ab1ce72eb939dac63b701598a9ae6df69bdef.tar.xz mod_nss-d99ab1ce72eb939dac63b701598a9ae6df69bdef.zip |
Fix formatting and variable name in error message.
Diffstat (limited to 'nss_engine_init.c')
-rw-r--r-- | nss_engine_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nss_engine_init.c b/nss_engine_init.c index cbcf114..94f00af 100644 --- a/nss_engine_init.c +++ b/nss_engine_init.c @@ -606,8 +606,8 @@ static void nss_init_server_certs(server_rec *s, "Certificate not verified: '%s'", mctx->nickname); nss_log_nss_error(APLOG_MARK, APLOG_ERR, s); if (mctx->enforce) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "Unable to verify certificate '%s'. Add \"SSLEnforceValidCerts off\" to nss.conf so the server can start until the problem can be resolved.", mctx->nickname); + ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, + "Unable to verify certificate '%s'. Add \"NSSEnforceValidCerts off\" to nss.conf so the server can start until the problem can be resolved.", mctx->nickname); nss_die(); } } |