summaryrefslogtreecommitdiff
path: root/src/backend/libpq
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2007-11-07 12:24:24 +0000
committerPeter Eisentraut <peter_e@gmx.net>2007-11-07 12:24:24 +0000
commit5f9869d0ee1ec8b4d45cc50334cd8c5582969f3b (patch)
tree557979f35c5b949d1fd8db7375b10fea6623aea6 /src/backend/libpq
parente9d7bd2650f63f3395d8d597c37caffc67803b94 (diff)
downloadpostgresql-5f9869d0ee1ec8b4d45cc50334cd8c5582969f3b.tar.gz
Use "alternative" instead of "alternate" where it is clearer.
Diffstat (limited to 'src/backend/libpq')
-rw-r--r--src/backend/libpq/README.SSL2
-rw-r--r--src/backend/libpq/be-secure.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/libpq/README.SSL b/src/backend/libpq/README.SSL
index 9b00a4f0ff..b45d53c829 100644
--- a/src/backend/libpq/README.SSL
+++ b/src/backend/libpq/README.SSL
@@ -196,7 +196,7 @@ that establishes an SSH tunnel when the program is launched:
/usr/bin/ssh -1 -i $IDENTITY -n $HOST 'sleep 60' & \
/usr/bin/psql -h $HOST -p 5555 $1
-Alternately, the system could run a daemon that establishes and maintains
+Alternatively, the system could run a daemon that establishes and maintains
the tunnel. This is preferrable when multiple users need to establish
similar tunnels to the same remote site.
diff --git a/src/backend/libpq/be-secure.c b/src/backend/libpq/be-secure.c
index dfff484db8..efb8ecbb77 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.80 2007/05/18 01:20:16 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/libpq/be-secure.c,v 1.81 2007/11/07 12:24:24 petere Exp $
*
* Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database
@@ -151,7 +151,7 @@ char *SSLCipherSuites = NULL;
* unsecured connection without fully informing the user.
* Very uncool.
*
- * Alternately, the backend could attempt to load these files
+ * Alternatively, the backend could attempt to load these files
* on startup if SSL is enabled - and refuse to start if any
* do not exist - but this would tend to piss off DBAs.
*