projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6ef167
)
Remove unused short option from getopt_long() call
author
Peter Eisentraut
Wed, 10 Aug 2022 09:02:32 +0000
(12:02 +0300)
committer
Peter 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
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_basebackup/pg_basebackup.c
b/src/bin/pg_basebackup/pg_basebackup.c
index 8694b05e68c069711098d97ae6afc5f340060113..5f6bc1c28ac53a184be8beb52b78eb911a69ccf4 100644
(file)
--- 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:wW
k
vP",
+ 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)