aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-03-11 05:02:57 -0500
committerBruce Momjian <bruce@momjian.us>2011-03-11 05:02:57 -0500
commitf887294ccfad1545f8c94e7d486ffdd90a61132e (patch)
tree07bebf0056d1c17345a2056227735764aed45724
parent72bd19dbddaf5786381377ad3da281572de721b5 (diff)
downloadpostgresql-f887294ccfad1545f8c94e7d486ffdd90a61132e.tar.gz
postgresql-f887294ccfad1545f8c94e7d486ffdd90a61132e.zip
Change "TIP" to "HINT" to match backend message style, in pg_ctl -m fast
suggestion.
-rw-r--r--src/bin/pg_ctl/pg_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index 4b9fb84c39f..e553c9b9d4b 100644
--- a/src/bin/pg_ctl/pg_ctl.c
+++ b/src/bin/pg_ctl/pg_ctl.c
@@ -866,7 +866,7 @@ do_stop(void)
write_stderr(_("%s: server does not shut down\n"), progname);
if (shutdown_mode == SMART_MODE)
- write_stderr(_("TIP: the \"-m fast\" option immediately disconnects sessions rather than\n"
+ write_stderr(_("HINT: The \"-m fast\" option immediately disconnects sessions rather than\n"
"waiting for session-initiated disconnection.\n"));
exit(1);
}
@@ -956,7 +956,7 @@ do_restart(void)
write_stderr(_("%s: server does not shut down\n"), progname);
if (shutdown_mode == SMART_MODE)
- write_stderr(_("TIP: the \"-m fast\" option immediately disconnects sessions rather than\n"
+ write_stderr(_("HINT: The \"-m fast\" option immediately disconnects sessions rather than\n"
"waiting for session-initiated disconnection.\n"));
exit(1);
}