From fa351b1b1321fe4b9f5201d8ebb6aa42cff27fad Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 10 Aug 2022 12:02:32 +0300 Subject: [PATCH] Remove unused short option from getopt_long() call The option was removed in 3ce7f72529 but the letter was left in the getopt_long() call. --- src/bin/pg_basebackup/pg_basebackup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 8694b05e68..5f6bc1c28a 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)