From: Tom Lane Date: Tue, 18 Mar 2014 14:38:25 +0000 (-0400) Subject: Fix pg_dumpall option parsing: -i doesn't take an argument. X-Git-Tag: REL9_3_5~144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63817f86b57fc3d29b57787bca9d786218b7ee25;p=postgresql Fix pg_dumpall option parsing: -i doesn't take an argument. This used to work properly, but got fat-fingered in commit 3dee636e0404885d07885d41c0d70e50c784f324. Per bug #9620 from Nicolas Payart. --- diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 8f809ceb4d..642a8f5e30 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -193,7 +193,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) {