diff options
author | Chris Buechler <cmb@pfsense.org> | 2015-07-25 19:34:55 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2015-07-25 19:45:15 -0500 |
commit | 905205a2a7b5b8a7e62ba9bf76ad9d5f72170d5c (patch) | |
tree | 18e1a616ef6506aabc4ecff7670257c845e928a8 /etc | |
parent | b099481141d096d34897c4ec08b22dcea9bebbdd (diff) | |
download | pfsense-905205a2a7b5b8a7e62ba9bf76ad9d5f72170d5c.zip pfsense-905205a2a7b5b8a7e62ba9bf76ad9d5f72170d5c.tar.gz |
Change the log for CRLs with no data (exists but no certs revoked) to a warning since it's not technically an error.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/vpn.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/vpn.inc b/etc/inc/vpn.inc index 13dbffe..21a249e 100644 --- a/etc/inc/vpn.inc +++ b/etc/inc/vpn.inc @@ -591,7 +591,7 @@ EOD; if (is_array($config['crl']) && count($config['crl'])) { foreach ($config['crl'] as $crl) { if (!isset($crl['text'])) { - log_error(sprintf(gettext("Error: Invalid CRL data for %s"), $crl['descr'])); + log_error(sprintf(gettext("Warning: Missing CRL data for %s"), $crl['descr'])); continue; } $fpath = "{$crlpath}/{$crl['refid']}.crl"; |