aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2011-03-07 10:41:13 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2011-03-07 10:41:13 +0200
commit97e3dacd84f185bff86485f54c665621222c576b (patch)
tree4d8b45977f9956a7a09580d02a0c89774e4b007f /src
parentbaabf05196922164db80bdc45fd0660c8700f1f7 (diff)
downloadpostgresql-97e3dacd84f185bff86485f54c665621222c576b.tar.gz
postgresql-97e3dacd84f185bff86485f54c665621222c576b.zip
Begin error message with lower-case letter.
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/postmaster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 372fec7560e..47c81e4db1b 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -737,7 +737,7 @@ PostmasterMain(int argc, char *argv[])
(errmsg("WAL streaming (max_wal_senders > 0) requires wal_level \"archive\" or \"hot_standby\"")));
if (strlen(SyncRepStandbyNames) > 0 && max_wal_senders == 0)
ereport(ERROR,
- (errmsg("Synchronous replication requires WAL streaming (max_wal_senders > 0)")));
+ (errmsg("synchronous replication requires WAL streaming (max_wal_senders > 0)")));
/*
* Other one-time internal sanity checks can go here, if they are fast.