From: Peter Eisentraut Date: Wed, 10 Aug 2022 09:02:32 +0000 (+0300) Subject: Remove unused short option from getopt_long() call X-Git-Tag: REL_16_BETA1~2012 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fa351b1b1321fe4b9f5201d8ebb6aa42cff27fad;p=thirdparty%2Fpostgresql.git Remove unused short option from getopt_long() call The option was removed in 3ce7f72529 but the letter was left in the getopt_long() call. --- diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 8694b05e68c..5f6bc1c28ac 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -2325,7 +2325,7 @@ main(int argc, char **argv) atexit(cleanup_directories_atexit); - while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWkvP", + while ((c = getopt_long(argc, argv, "CD:F:r:RS:t:T:X:l:nNzZ:d:c:h:p:U:s:wWvP", long_options, &option_index)) != -1) { switch (c)