mirror of
https://github.com/postgres/postgres.git
synced 2026-03-10 02:01:23 -04:00
initdb: properly alphabetize getopt_long options in C string
Backpatch-through: 9.5
This commit is contained in:
parent
17c77c8c90
commit
5ec8a2e7c3
1 changed files with 1 additions and 1 deletions
|
|
@ -3419,7 +3419,7 @@ main(int argc, char *argv[])
|
|||
|
||||
/* process command-line options */
|
||||
|
||||
while ((c = getopt_long(argc, argv, "dD:E:kL:nNU:WA:sST:X:", long_options, &option_index)) != -1)
|
||||
while ((c = getopt_long(argc, argv, "A:dD:E:kL:nNWsST:U:X:", long_options, &option_index)) != -1)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue