Commit 2fddd23b authored by Bruce Momjian's avatar Bruce Momjian

On second thought, keep SSL CRL as a log, and wait for feedback from 8.2.

parent d440c5b4
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.65 2006/04/27 15:25:04 momjian Exp $ * $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.66 2006/04/27 15:35:15 momjian Exp $
* *
* Since the server static private key ($DataDir/server.key) * Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database * will normally be stored unencrypted so that the database
...@@ -810,8 +810,8 @@ initialize_SSL(void) ...@@ -810,8 +810,8 @@ initialize_SSL(void)
else else
{ {
/* Not fatal - we do not require CRL */ /* Not fatal - we do not require CRL */
ereport(DEBUG1, ereport(LOG,
(errmsg("SSL Certificate Revocation List (CRL) file \"%s\" not found: %s", (errmsg("SSL Certificate Revocation List (CRL) file \"%s\" not found, skipping: %s",
ROOT_CRL_FILE, SSLerrmessage()), ROOT_CRL_FILE, SSLerrmessage()),
errdetail("Will not check certificates against CRL."))); errdetail("Will not check certificates against CRL.")));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment