diff options
author | rcritten <> | 2007-06-07 14:58:31 +0000 |
---|---|---|
committer | rcritten <> | 2007-06-07 14:58:31 +0000 |
commit | e2baea526324e99cac0a03cb05a4db218b4f895f (patch) | |
tree | d2a4d4d0041864a4d14ee9c0f2d11603fb59deb5 | |
parent | bc1e4b1e5777048da135012815cc19a068084650 (diff) | |
download | mod_nss-e2baea526324e99cac0a03cb05a4db218b4f895f.tar.gz mod_nss-e2baea526324e99cac0a03cb05a4db218b4f895f.tar.xz mod_nss-e2baea526324e99cac0a03cb05a4db218b4f895f.zip |
Only NSSPassPhraseHelper needs to be required.
-rw-r--r-- | nss_engine_init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nss_engine_init.c b/nss_engine_init.c index b87b03c..7e2f65e 100644 --- a/nss_engine_init.c +++ b/nss_engine_init.c @@ -155,10 +155,9 @@ static void nss_init_SSLLibrary(server_rec *s, int fipsenabled, const char * child_argv[4]; apr_status_t rv; - if (mc->pphrase_dialog_helper == NULL && - mc->pphrase_dialog_path == NULL) { + if (mc->pphrase_dialog_helper == NULL) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "Neither NSSPassPhraseHelper nor NSSPassPhraseDialog is not set. One or the other is required."); + "NSSPassPhraseHelper is not set. It is required."); nss_die(); } |