diff options
| author | Robert Haas <rhaas@postgresql.org> | 2011-03-18 21:22:43 -0400 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2011-03-18 21:23:28 -0400 |
| commit | f78ba0a73a60f40270b21c4582f6a7d52fe16739 (patch) | |
| tree | 572938a59f5963463a6907a6e8ba607f4755c03a /src/bin/pg_dump/pg_dumpall.c | |
| parent | 0191e120e6b427f16aed239c657b9e32c83a0f6d (diff) | |
| download | postgresql-f78ba0a73a60f40270b21c4582f6a7d52fe16739.tar.gz | |
Woops. Previous patch to remove -X options missed getopt_long calls().
Noted by Tom Lane.
Diffstat (limited to 'src/bin/pg_dump/pg_dumpall.c')
| -rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 13c4d9d818..9082653552 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -185,7 +185,7 @@ main(int argc, char *argv[]) pgdumpopts = createPQExpBuffer(); - while ((c = getopt_long(argc, argv, "acf:gh:il:oOp:rsS:tU:vwWxX:", long_options, &optindex)) != -1) + while ((c = getopt_long(argc, argv, "acf:gh:il:oOp:rsS:tU:vwWx", long_options, &optindex)) != -1) { switch (c) { |
