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:16 -0500 |
commit | 3f63b38fb252c54a2c40910dee47c2dc46cc7097 (patch) | |
tree | e85b7aab6dd6e0a54132a89898f77c7063da713a | |
parent | 022d954925d73490f9771cdded16af3e94f27ec0 (diff) |
Fix another poorly worded error message.
Spotted by Álvaro Herrera.
-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 1366174a5ec..b6b5cb5af3f 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2812,7 +2812,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; } |