1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

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 5567649571
commit d1131ae503

View 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, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_POWER_USERS, 0, 0, 0, 0, 0,
0, &dropSids[1].Sid)) 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; return 0;
} }