Remove unused short option from getopt_long() call
authorPeter Eisentraut
Wed, 10 Aug 2022 09:02:32 +0000 (12:02 +0300)
committerPeter Eisentraut
Wed, 10 Aug 2022 09:02:32 +0000 (12:02 +0300)
The option was removed in 3ce7f72529 but the letter was left in the
getopt_long() call.

src/bin/pg_basebackup/pg_basebackup.c

index 8694b05e68c069711098d97ae6afc5f340060113..5f6bc1c28ac53a184be8beb52b78eb911a69ccf4 100644 (file)
@@ -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)