diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-12-12 12:59:09 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-12-12 12:59:09 -0500 |
commit | da214247de1d566709bff0420dd8024fd9fa0d10 (patch) | |
tree | bc9757b3e04c20ec3a951489f1cc927f7622dda4 | |
parent | ccbe536776f599cf3f709c60543222f1840e9d5d (diff) |
initdb: complete getopt_long alphabetization
Backpatch-through: 9.5
-rw-r--r-- | src/bin/initdb/initdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 31ed852f059..9c546dd2522 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3458,7 +3458,7 @@ main(int argc, char *argv[]) /* process command-line options */ - while ((c = getopt_long(argc, argv, "A:dD:E:kL:nNWsST:U: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) { |