projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c977b8c
)
Fix another poorly worded error message.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Wed, 17 Dec 2014 18:22:07 +0000
(13:22 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Wed, 17 Dec 2014 18:22:07 +0000
(13:22 -0500)
Spotted by Álvaro Herrera.
src/bin/initdb/initdb.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/initdb/initdb.c
b/src/bin/initdb/initdb.c
index 3ca4f054b51e389ea9e11590311d1580726100db..cf15e6f4f8b206c9b60c2ef254a37e52600d9ed1 100644
(file)
--- 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;
}