From 39f3a9d2ffcaafeb8ff25e0dbe9f28a657efb48e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 12 Dec 2020 12:51:16 -0500 Subject: [PATCH] initdb: properly alphabetize getopt_long options in C string Backpatch-through: 9.5 --- src/bin/initdb/initdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index ee3bfa82f4..957ef65c94 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2999,7 +2999,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) {