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 | 787d06a206b24138c06393b4737c6f116aaf30e6 (patch) | |
tree | 0a4f2c82d47242b04277010ce54039c49a12a2ca | |
parent | 38bcd4340f5a7d618961d185f79776f5802336e0 (diff) | |
download | postgresql-787d06a206b24138c06393b4737c6f116aaf30e6.tar.gz postgresql-787d06a206b24138c06393b4737c6f116aaf30e6.zip |
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 0d701ce218f..eb75a72793a 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3025,7 +3025,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) { |