initdb: properly alphabetize getopt_long options in C string

Backpatch-through: 9.5
This commit is contained in:
Bruce Momjian 2020-12-12 12:51:16 -05:00
parent 3470caa21b
commit ab96c4c2d1

View File

@ -3034,7 +3034,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:nNsST:U:WX:", long_options, &option_index)) != -1)
{
switch (c)
{