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 | 970761f15f4a866728a472a44e332a7011631feb (patch) | |
tree | 282b953be55d32f805bcb5720170bc1203f9f28b /src | |
parent | add6b13be91f412a11a5be6d91888be9f16c7b1d (diff) | |
download | postgresql-970761f15f4a866728a472a44e332a7011631feb.tar.gz postgresql-970761f15f4a866728a472a44e332a7011631feb.zip |
initdb: complete getopt_long alphabetization
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 0c8c8bb94d1..e93e602e128 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3147,7 +3147,7 @@ main(int argc, char *argv[]) /* process command-line options */ - while ((c = getopt_long(argc, argv, "A:dD:E:gkL:nNWsST:U:X:", long_options, &option_index)) != -1) + while ((c = getopt_long(argc, argv, "A:dD:E:gkL:nNsST:U:WX:", long_options, &option_index)) != -1) { switch (c) { |