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 | 8e456b8e597ed944eca7c24d6613ebff94aacb0b (patch) | |
tree | d1611bf8da3499525a1843051d5635ba5f40acee | |
parent | 035c7dfddff1197a9229559a5c6e23e2a4cbf46c (diff) | |
download | postgresql-8e456b8e597ed944eca7c24d6613ebff94aacb0b.tar.gz postgresql-8e456b8e597ed944eca7c24d6613ebff94aacb0b.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 da855129ae0..81568218167 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -3094,7 +3094,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) { |