summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_dumpall.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2011-03-18 21:22:43 -0400
committerRobert Haas <rhaas@postgresql.org>2011-03-18 21:23:28 -0400
commitf78ba0a73a60f40270b21c4582f6a7d52fe16739 (patch)
tree572938a59f5963463a6907a6e8ba607f4755c03a /src/bin/pg_dump/pg_dumpall.c
parent0191e120e6b427f16aed239c657b9e32c83a0f6d (diff)
downloadpostgresql-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.c2
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)
{