diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-11-25 14:38:20 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-11-25 14:38:20 -0500 |
commit | 4646e0cef70d2f9a6bb1764cee5c13b7bbd23625 (patch) | |
tree | f2172a2711bcc7d1ed6b36a47f056253617fc7c6 /src | |
parent | 742ac738c33a1a6adf11a7e69c65f102b602a1e5 (diff) | |
download | postgresql-4646e0cef70d2f9a6bb1764cee5c13b7bbd23625.tar.gz postgresql-4646e0cef70d2f9a6bb1764cee5c13b7bbd23625.zip |
Improve pg_ctl "cannot connect" warning, per suggestion from Magnus.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 211e023c24d..84cd8006c7d 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -754,7 +754,7 @@ do_start(void) print_msg(_(" done\n")); print_msg(_("server started\n")); if (status == PQREJECT) - write_stderr(_("warning: could not connect, perhaps due to invalid authentication or\n" + write_stderr(_("warning: could not connect; might be due to invalid authentication or\n" "misconfiguration.\n")); } } |