diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2017-03-28 13:24:39 -0400 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2017-03-28 13:24:39 -0400 |
commit | a99f77021f0c8c1c221af4e36b64ca43abd04389 (patch) | |
tree | c3e120d14bc67b99b5d2bec6914a6e1354a6de2b /src/backend/access/transam/xlog.c | |
parent | 967a4b01e3637813365502b46499360b18b86725 (diff) | |
download | postgresql-a99f77021f0c8c1c221af4e36b64ca43abd04389.tar.gz postgresql-a99f77021f0c8c1c221af4e36b64ca43abd04389.zip |
Correct grammar in error message
"could not generate" rather than "could not generation"
from commit 818fd4a67d610991757b610755e3065fb99d80a5
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 25fa5443de4..5d58f0983cf 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4980,7 +4980,7 @@ BootStrapXLOG(void) if (!pg_backend_random(mock_auth_nonce, MOCK_AUTH_NONCE_LEN)) ereport(PANIC, (errcode(ERRCODE_INTERNAL_ERROR), - errmsg("could not generation secret authorization token"))); + errmsg("could not generate secret authorization token"))); /* First timeline ID is always 1 */ ThisTimeLineID = 1; |