aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-01-06 12:30:19 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-01-06 12:30:19 +0200
commit10a82cda67731941c18256e009edad4a784a2994 (patch)
tree8dd5e6b9b900d35818e78a0be735986e675c1bb7 /src
parent8b49a6044d06b557047210dba2735081bb037e96 (diff)
downloadpostgresql-10a82cda67731941c18256e009edad4a784a2994.tar.gz
postgresql-10a82cda67731941c18256e009edad4a784a2994.zip
Remove bogus -K option from pg_dump.
I added it to the getopt call by accident in commit 691e595dd9c7786d37d73ccd327f8c2b6f0dace6. Amit Kapila
Diffstat (limited to 'src')
-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 eb9ef7583c9..2c07801d647 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -402,7 +402,7 @@ main(int argc, char **argv)
}
}
- while ((c = getopt_long(argc, argv, "abcCd:E:f:F:h:ij:K:n:N:oOp:RsS:t:T:U:vwWxZ:",
+ while ((c = getopt_long(argc, argv, "abcCd:E:f:F:h:ij:n:N:oOp:RsS:t:T:U:vwWxZ:",
long_options, &optindex)) != -1)
{
switch (c)