aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-07-01 13:49:47 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-07-01 13:49:47 +0000
commite0016db7d229c022cd138071c496d8d0a62c53c7 (patch)
tree17fd3fb1336251b908016715c5aec6a6b009a42a /src
parent2bdd2e5dcff20e4cf5987c901a71b794808d582b (diff)
downloadpostgresql-e0016db7d229c022cd138071c496d8d0a62c53c7.tar.gz
postgresql-e0016db7d229c022cd138071c496d8d0a62c53c7.zip
STRENGH => STRENGTH, per Jon Jensen.
Diffstat (limited to 'src')
-rw-r--r--src/backend/libpq/be-secure.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/libpq/be-secure.c b/src/backend/libpq/be-secure.c
index cca5e79f9e0..e4c8b060547 100644
--- a/src/backend/libpq/be-secure.c
+++ b/src/backend/libpq/be-secure.c
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.34 2003/06/11 15:05:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.35 2003/07/01 13:49:47 tgl Exp $
*
* Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database
@@ -643,7 +643,7 @@ initialize_SSL(void)
SSL_CTX_set_options(SSL_context, SSL_OP_SINGLE_DH_USE | SSL_OP_NO_SSLv2);
/* setup the allowed cipher list */
- if (SSL_CTX_set_cipher_list(SSL_context, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGH") != 1)
+ if (SSL_CTX_set_cipher_list(SSL_context, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH") != 1)
{
postmaster_error("unable to set the cipher list (no valid ciphers available)");
ExitPostmaster(1);