Fix another poorly worded error message.
authorTom Lane
Wed, 17 Dec 2014 18:22:07 +0000 (13:22 -0500)
committerTom Lane
Wed, 17 Dec 2014 18:22:21 +0000 (13:22 -0500)
Spotted by Álvaro Herrera.

src/bin/initdb/initdb.c

index 335cbead89affd6d63a2d630a345b00db05dd269..d95e781f42ce145c813de212a7d4f06e351b5bf4 100644 (file)
@@ -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;
    }