summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Warner2000-08-08 11:48:59 +0000
committerPhilip Warner2000-08-08 11:48:59 +0000
commit8fc32374beb542380857e2fc0d67df91ad123b1d (patch)
tree2c49153828736b4b51fb3f4a1f976773d9479d2e
parent022417740094620880488dd9b04fbb96ff11694b (diff)
Buf fix to pg_restire -S option in getopts
-rw-r--r--src/bin/pg_dump/pg_restore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c
index e85a42a2317..dd10ff54808 100644
--- a/src/bin/pg_dump/pg_restore.c
+++ b/src/bin/pg_dump/pg_restore.c
@@ -132,9 +132,9 @@ int main(int argc, char **argv)
progname = *argv;
#ifdef HAVE_GETOPT_LONG
- while ((c = getopt_long(argc, argv, "acCd:f:F:h:i:lNoOp:rRsSt:T:uU:vx", cmdopts, NULL)) != EOF)
+ while ((c = getopt_long(argc, argv, "acCd:f:F:h:i:lNoOp:rRsS:t:T:uU:vx", cmdopts, NULL)) != EOF)
#else
- while ((c = getopt(argc, argv, "acCd:f:F:h:i:lNoOp:rRsSt:T:uU:vx")) != -1)
+ while ((c = getopt(argc, argv, "acCd:f:F:h:i:lNoOp:rRsS:t:T:uU:vx")) != -1)
#endif
{
switch (c)