aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-12-20 23:36:13 -0500
committerPeter Eisentraut <peter_e@gmx.net>2012-12-20 23:38:15 -0500
commit3463dacc5627b849bbddd3f395dca44f39430e19 (patch)
tree50087ec06c104b3b0f9dd0549283edb002222d25 /src
parentbfe738d7f3678174976cfe0e93815abb98eefdd9 (diff)
downloadpostgresql-3463dacc5627b849bbddd3f395dca44f39430e19.tar.gz
postgresql-3463dacc5627b849bbddd3f395dca44f39430e19.zip
Fix grammatical mistake in error message
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 5df6063be99..ae370fb83de 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -9418,7 +9418,7 @@ do_pg_start_backup(const char *backupidstr, bool fast, char **labelfile)
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("WAL generated with full_page_writes=off was replayed "
"since last restartpoint"),
- errhint("This means that the backup being taken on standby "
+ errhint("This means that the backup being taken on the standby "
"is corrupt and should not be used. "
"Enable full_page_writes and run CHECKPOINT on the master, "
"and then try an online backup again.")));
@@ -9765,7 +9765,7 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive)
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("WAL generated with full_page_writes=off was replayed "
"during online backup"),
- errhint("This means that the backup being taken on standby "
+ errhint("This means that the backup being taken on the standby "
"is corrupt and should not be used. "
"Enable full_page_writes and run CHECKPOINT on the master, "
"and then try an online backup again.")));