diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-07-11 02:00:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-07-11 02:00:14 +0000 |
commit | 3a0136c7d2321a3d7d883bdb2185b505d265013b (patch) | |
tree | a97b8ac45574aecad2a893b2267b3f09edfdd5d8 /src | |
parent | 9c6c0ceb9757ba44cba35abcc17121baca2bb913 (diff) |
Fix getopt flags. Man thing thing was messed up.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_restore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index e4f1c8c6f7f..c819154f545 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -34,7 +34,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.36 2002/07/11 01:57:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.37 2002/07/11 02:00:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -152,9 +152,9 @@ main(int argc, char **argv) } #ifdef HAVE_GETOPT_LONG - while ((c = getopt_long(argc, argv, "acCd:f:F:h:i:lL:NoOp:P:rRsS:t:T:uU:vWxX:", cmdopts, NULL)) != -1) + while ((c = getopt_long(argc, argv, "acCd:f:F:h:iI:lL:NoOp:P:rRsS:t:T:uU:vWxX:", cmdopts, NULL)) != -1) #else - while ((c = getopt(argc, argv, "acCd:f:F:h:i:lL:NoOp:P:rRsS:t:T:uU:vWxX:")) != -1) + while ((c = getopt(argc, argv, "acCd:f:F:h:iI:lL:NoOp:P:rRsS:t:T:uU:vWxX:")) != -1) #endif { switch (c) |