aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2014-12-17 13:22:07 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2014-12-17 13:22:21 -0500
commit83fffec6000d7123a63e5f5a7d9e263e11033ab5 (patch)
tree3b74d9ed91cefdce4fc27efee0b43cf4b4cefc69 /src
parent741cf193b7885986e297a63d1bdef4b79d6c7d0f (diff)
downloadpostgresql-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.c3
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;
}