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:07 -0500
commitc340494235111fb87e46b11ca6a87a7a43795f0f (patch)
tree2827f2090d114e62c25170ea2de2124953c166cc /src
parentc977b8cffc76be00fbaab76e3271e05104260ec7 (diff)
downloadpostgresql-c340494235111fb87e46b11ca6a87a7a43795f0f.tar.gz
postgresql-c340494235111fb87e46b11ca6a87a7a43795f0f.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 3ca4f054b51..cf15e6f4f8b 100644
--- a/src/bin/initdb/initdb.c
+++ b/src/bin/initdb/initdb.c
@@ -2815,7 +2815,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;
}