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 | add6b13be91f412a11a5be6d91888be9f16c7b1d (patch) | |
tree | 3d1f0da75d59b4aeba32df4d805deb9eec2f3087 /src | |
parent | 1f229f4fdcf88d8fe7cb0b7442a4894cd4d1c47c (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 687409b96af..0c8c8bb94d1 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, "dD:E:kL:nNU:WA:sST:X:g", long_options, &option_index)) != -1) + while ((c = getopt_long(argc, argv, "A:dD:E:gkL:nNWsST:U:X:", long_options, &option_index)) != -1) { switch (c) { |