From: Simon Riggs Date: Tue, 28 Mar 2017 17:24:39 +0000 (-0400) Subject: Correct grammar in error message X-Git-Url: http://git.postgresql.org/gitweb/static/tut_user.html?a=commitdiff_plain;h=a99f77021f0c8c1c221af4e36b64ca43abd04389;p=users%2Fheikki%2Fpostgres.git Correct grammar in error message "could not generate" rather than "could not generation" from commit 818fd4a67d610991757b610755e3065fb99d80a5 --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 25fa5443de..5d58f0983c 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;