diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-05-06 21:47:12 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-05-06 21:47:42 -0400 |
commit | 5c5f83507cb697e436f8f9d20d62787c1a66d19c (patch) | |
tree | 9311e9284d44ba17bd463f10b131c03ea968d814 /contrib/pg_upgrade/server.c | |
parent | 3ef5b2df9738fd0795c1ffcaada93c3c5df7cd49 (diff) | |
download | postgresql-5c5f83507cb697e436f8f9d20d62787c1a66d19c.tar.gz postgresql-5c5f83507cb697e436f8f9d20d62787c1a66d19c.zip |
Adjust pg_upgrade FATAL error messages to have consistent newlines.
Also adjust some error message capitalization for consistency.
Diffstat (limited to 'contrib/pg_upgrade/server.c')
-rw-r--r-- | contrib/pg_upgrade/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index 935ce32a611..9a550756e56 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -192,7 +192,7 @@ start_postmaster(ClusterInfo *cluster) if (conn) PQfinish(conn); pg_log(PG_FATAL, "unable to connect to %s postmaster started with the command: %s\n" - "Perhaps pg_hba.conf was not set to \"trust\".", + "Perhaps pg_hba.conf was not set to \"trust\".\n", CLUSTER_NAME(cluster), cmd); } PQfinish(conn); |