]> granicus.if.org Git - postgresql/commitdiff
Fix another poorly worded error message.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 17 Dec 2014 18:22:07 +0000 (13:22 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 17 Dec 2014 18:22:25 +0000 (13:22 -0500)
Spotted by Álvaro Herrera.

src/bin/initdb/initdb.c

index b077bf8b8ee3d6560a5e2ea859d3b18181e812ed..23fa46823ae2b5ca74696a575d9101fc35c90ffa 100644 (file)
@@ -2469,7 +2469,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;
        }