diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-12-12 12:51:16 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-12-12 12:51:16 -0500 |
commit | ccbe536776f599cf3f709c60543222f1840e9d5d (patch) | |
tree | e31896ae7ca8a335fb401c54ee95664f832aeef6 /src | |
parent | 14db9579222138b3fba2f73c285ff3f9e4bf9465 (diff) |
initdb: properly alphabetize getopt_long options in C string
Backpatch-through: 9.5
Diffstat (limited to 'src')
-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 26b7cfe16ce..31ed852f059 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, "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) { |