mirror of
https://github.com/postgres/postgres.git
synced 2026-02-17 09:42:54 -05:00
Fix pg_dumpall option parsing: -i doesn't take an argument.
This used to work properly, but got fat-fingered in commit
3dee636e04. Per bug #9620 from
Nicolas Payart.
This commit is contained in:
parent
e726e59dc4
commit
19f2d6cdae
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ main(int argc, char *argv[])
|
|||
|
||||
pgdumpopts = createPQExpBuffer();
|
||||
|
||||
while ((c = getopt_long(argc, argv, "acd:f:gh:i:l:oOp:rsS:tU:vwWx", long_options, &optindex)) != -1)
|
||||
while ((c = getopt_long(argc, argv, "acd:f:gh:il:oOp:rsS:tU:vwWx", long_options, &optindex)) != -1)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue