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:07 -0500 |
commit | c340494235111fb87e46b11ca6a87a7a43795f0f (patch) | |
tree | 2827f2090d114e62c25170ea2de2124953c166cc /src | |
parent | c977b8cffc76be00fbaab76e3271e05104260ec7 (diff) | |
download | postgresql-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.c | 3 |
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; } |