Small corrections to message output targets in pg_ctl
- The message "server stopped" should be affected by the -s option, just like "server started" already was. - The message "could not start server" should consistently go to stderr.
This commit is contained in:
parent
ad458cfe81
commit
4c6c6b52d2
@ -4,7 +4,7 @@
|
||||
*
|
||||
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.118 2010/01/02 16:57:58 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.119 2010/02/19 14:12:19 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -748,7 +748,9 @@ do_start(void)
|
||||
|
||||
if (test_postmaster_connection(false) == false)
|
||||
{
|
||||
printf(_("could not start server\n"));
|
||||
write_stderr(_("%s: could not start server\n"
|
||||
"Examine the log output.\n"),
|
||||
progname);
|
||||
exit(1);
|
||||
}
|
||||
else
|
||||
@ -828,7 +830,7 @@ do_stop(void)
|
||||
}
|
||||
print_msg(_(" done\n"));
|
||||
|
||||
printf(_("server stopped\n"));
|
||||
print_msg(_("server stopped\n"));
|
||||
}
|
||||
}
|
||||
|
||||
@ -907,7 +909,7 @@ do_restart(void)
|
||||
}
|
||||
|
||||
print_msg(_(" done\n"));
|
||||
printf(_("server stopped\n"));
|
||||
print_msg(_("server stopped\n"));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user