diff options
author | Bruce Momjian | 2011-03-11 10:02:57 +0000 |
---|---|---|
committer | Bruce Momjian | 2011-03-11 10:02:57 +0000 |
commit | f887294ccfad1545f8c94e7d486ffdd90a61132e (patch) | |
tree | 07bebf0056d1c17345a2056227735764aed45724 | |
parent | 72bd19dbddaf5786381377ad3da281572de721b5 (diff) |
Change "TIP" to "HINT" to match backend message style, in pg_ctl -m fast
suggestion.
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 4 |
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 4b9fb84c39..e553c9b9d4 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); } |