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 | 348dd28a0df7c56e88cc83cedeb92a43db39233c (patch) | |
tree | ee999da00c48c79b047567cb452f4f365dc216f3 /src/bin/initdb/initdb.c | |
parent | 5ec8a2e7c3bf5af67e2fff68a709d01add16ebfc (diff) |
initdb: complete getopt_long alphabetization
Backpatch-through: 9.5
Diffstat (limited to 'src/bin/initdb/initdb.c')
-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 67a7042a113..cf32d3e248b 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3419,7 +3419,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) { |