diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-05-06 02:24:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-05-06 02:24:39 +0000 |
commit | 069ad5fcc34e6a340ab10453e78c2e152e1e0ee2 (patch) | |
tree | 7c3e0250dc67c81167e0e1f879b2ce3ae5b465f1 /src/backend | |
parent | 3ecfdceaec956db3196967b468f281d4ff849b1b (diff) | |
download | postgresql-069ad5fcc34e6a340ab10453e78c2e152e1e0ee2.tar.gz postgresql-069ad5fcc34e6a340ab10453e78c2e152e1e0ee2.zip |
Add SSL CRL support to libpq. Recently added to the backend.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libpq/be-secure.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libpq/be-secure.c b/src/backend/libpq/be-secure.c index 75e3240f912..8a4def4e11a 100644 --- a/src/backend/libpq/be-secure.c +++ b/src/backend/libpq/be-secure.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.68 2006/05/06 01:31:38 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.69 2006/05/06 02:24:39 momjian Exp $ * * Since the server static private key ($DataDir/server.key) * will normally be stored unencrypted so that the database @@ -803,7 +803,7 @@ initialize_SSL(void) if (cvstore) { - /* Set the flags to check against the complete CRL chain */ + /* Set the flags to check against the complete CRL chain */ if (X509_STORE_load_locations(cvstore, ROOT_CRL_FILE, NULL) != 0) /* OpenSSL 0.96 does not support X509_V_FLAG_CRL_CHECK */ #ifdef X509_V_FLAG_CRL_CHECK |