diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-17 13:22:07 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-17 13:22:25 -0500 |
commit | d1131ae50350f971dbc28502d5f4e141d41d9c8e (patch) | |
tree | 7250ccb477be1b834c719aad7dcd12b89856df7b /src/bin/initdb/initdb.c | |
parent | 556764957185d35336f060c3d38b7f81452e0d29 (diff) |
Fix another poorly worded error message.
Spotted by Álvaro Herrera.
Diffstat (limited to 'src/bin/initdb/initdb.c')
-rw-r--r-- | src/bin/initdb/initdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index b077bf8b8ee..23fa46823ae 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2469,7 +2469,8 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo) SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_POWER_USERS, 0, 0, 0, 0, 0, 0, &dropSids[1].Sid)) { - fprintf(stderr, _("%s: could not to allocate SIDs: error code %lu\n"), progname, GetLastError()); + fprintf(stderr, _("%s: could not allocate SIDs: error code %lu\n"), + progname, GetLastError()); return 0; } |