Fix another poorly worded error message.

Spotted by Álvaro Herrera.
This commit is contained in:
Tom Lane 2014-12-17 13:22:07 -05:00
parent c977b8cffc
commit c340494235
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}