aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2019-04-17 17:28:02 -0700
committerAndres Freund <andres@anarazel.de>2019-04-17 17:28:02 -0700
commit4d0183592764629d38182e30642b1aef8baeb987 (patch)
tree800e03635fc7be6578ba2c01b0f0f429c596f084
parentf6b39171f3d65155b9390c2c69bc5b3469f923a8 (diff)
downloadpostgresql-4d0183592764629d38182e30642b1aef8baeb987.tar.gz
postgresql-4d0183592764629d38182e30642b1aef8baeb987.zip
pg_dump: Remove stray option parsing support for -o.
I (Andres) missed this in 578b229718e8f, the removal of WITH OIDS support. Author: Daniel Verite Discussion: https://postgr.es/m/f06e9735-3717-4904-8c95-47d0b9c3bb10@manitou-mail.org
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 452f30760bb..7cfb67fd36e 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -428,7 +428,7 @@ main(int argc, char **argv)
InitDumpOptions(&dopt);
- while ((c = getopt_long(argc, argv, "abBcCd:E:f:F:h:j:n:N:oOp:RsS:t:T:U:vwWxZ:",
+ while ((c = getopt_long(argc, argv, "abBcCd:E:f:F:h:j:n:N:Op:RsS:t:T:U:vwWxZ:",
long_options, &optindex)) != -1)
{
switch (c)