diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2007-05-31 15:13:06 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2007-05-31 15:13:06 +0000 |
commit | 7ce9b3683ea76233c33e550110c5a63ecd8add89 (patch) | |
tree | 4be97e40b3788a001f80e563b8d15211435492b1 /src/bin/pg_ctl/pg_ctl.c | |
parent | 54af8765930fda37b0dcbf6bbf43be981bb4454c (diff) | |
download | postgresql-7ce9b3683ea76233c33e550110c5a63ecd8add89.tar.gz postgresql-7ce9b3683ea76233c33e550110c5a63ecd8add89.zip |
Make some messages more consistent
Diffstat (limited to 'src/bin/pg_ctl/pg_ctl.c')
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 789b3bfb2e5..3b819c44649 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -4,7 +4,7 @@ * * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.79 2007/03/18 16:50:44 neilc Exp $ + * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.80 2007/05/31 15:13:04 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1257,7 +1257,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION * processInfo) * NT4 doesn't have CreateRestrictedToken, so just call ordinary * CreateProcess */ - write_stderr("WARNING: Unable to create restricted tokens on this platform\n"); + write_stderr("WARNING: cannot create restricted tokens on this platform\n"); if (Advapi32Handle != NULL) FreeLibrary(Advapi32Handle); return CreateProcess(NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, processInfo); @@ -1332,7 +1332,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION * processInfo) * Log error if we can't get version, or if we're on WinXP/2003 or * newer */ - write_stderr("WARNING: Unable to locate all job object functions in system API!\n"); + write_stderr("WARNING: could not locate all job object functions in system API\n"); } else { |