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:21 -0500 |
commit | 83fffec6000d7123a63e5f5a7d9e263e11033ab5 (patch) | |
tree | 3b74d9ed91cefdce4fc27efee0b43cf4b4cefc69 /src | |
parent | 741cf193b7885986e297a63d1bdef4b79d6c7d0f (diff) | |
download | postgresql-83fffec6000d7123a63e5f5a7d9e263e11033ab5.tar.gz postgresql-83fffec6000d7123a63e5f5a7d9e263e11033ab5.zip |
Fix another poorly worded error message.
Spotted by Álvaro Herrera.
Diffstat (limited to 'src')
-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 335cbead89a..d95e781f42c 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2740,7 +2740,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; } |