aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2010-06-09 00:54:39 +0000
committerTatsuo Ishii <ishii@postgresql.org>2010-06-09 00:54:39 +0000
commit016212e0eb056f6c635b946fa6c1a572c89171a8 (patch)
tree905dd236a5e9cce8726a81ae269cae209c1171ef /src
parent8de14adc5f28a7eaa47d92896cf1797728902857 (diff)
downloadpostgresql-016212e0eb056f6c635b946fa6c1a572c89171a8.tar.gz
postgresql-016212e0eb056f6c635b946fa6c1a572c89171a8.zip
Fix typo in the header comment. Per request from Masao Fujii.
Diffstat (limited to 'src')
-rw-r--r--src/backend/replication/walreceiver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/walreceiver.c b/src/backend/replication/walreceiver.c
index af5da50b0fb..11abe6eb8b7 100644
--- a/src/backend/replication/walreceiver.c
+++ b/src/backend/replication/walreceiver.c
@@ -8,7 +8,7 @@
*
* When the startup process determines that it's time to start streaming,
* it instructs postmaster to start walreceiver. Walreceiver first connects
- * connects to the primary server (it will be served by a walsender process
+ * to the primary server (it will be served by a walsender process
* in the primary server), and then keeps receiving XLOG records and
* writing them to the disk as long as the connection is alive. As XLOG
* records are received and flushed to disk, it updates the
@@ -29,7 +29,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/replication/walreceiver.c,v 1.12 2010/06/07 15:49:30 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/replication/walreceiver.c,v 1.13 2010/06/09 00:54:39 ishii Exp $
*
*-------------------------------------------------------------------------
*/