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 | 035c7dfddff1197a9229559a5c6e23e2a4cbf46c (patch) | |
tree | d5c46d1db7978596e33ded5b854162a123188c64 | |
parent | 2f1997b1551a417b52d75621817a813f5171c48f (diff) | |
download | postgresql-035c7dfddff1197a9229559a5c6e23e2a4cbf46c.tar.gz postgresql-035c7dfddff1197a9229559a5c6e23e2a4cbf46c.zip |
initdb: properly alphabetize getopt_long options in C string
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 acf610808e3..da855129ae0 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, "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) { |