aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-09-04 03:20:29 +0000
committerBruce Momjian <bruce@momjian.us>2001-09-04 03:20:29 +0000
commit7e137432996394e60211c1e92aa929f9e286153a (patch)
tree1838029311de4fa130521ed763f211fb5b492893
parent9b775726629fe804af71a72c914933025ee21f75 (diff)
downloadpostgresql-7e137432996394e60211c1e92aa929f9e286153a.tar.gz
postgresql-7e137432996394e60211c1e92aa929f9e286153a.zip
pg_restore option is {c|t}, not {c|f}. Pointed out by someone on IRC.
" -F {c|t} specify backup file format\n"
-rw-r--r--src/bin/pg_dump/pg_restore.c6
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 0bff04903cb..94571db53b4 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.25 2001/08/22 20:23:24 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.26 2001/09/04 03:20:29 momjian Exp $
*
* Modifications - 28-Jun-2000 - pjw@rhyme.com.au
*
@@ -386,7 +386,7 @@ usage(const char *progname)
" -C, --create issue commands to create the database\n"
" -d, --dbname=NAME specify database name\n"
" -f, --file=FILENAME TOC output file name (see -l)\n"
- " -F, --format={c|f} specify backup file format\n"
+ " -F, --format={c|t} specify backup file format\n"
" -h, --host=HOSTNAME server host name\n"
" -i, --index=NAME restore named index\n"
" -l, --list dump summarized TOC for of the archive\n"
@@ -422,7 +422,7 @@ usage(const char *progname)
" -C issue commands to create the database\n"
" -d NAME specify database name\n"
" -f FILENAME TOC output file name (see -l)\n"
- " -F {c|f} specify backup file format\n"
+ " -F {c|t} specify backup file format\n"
" -h HOSTNAME server host name\n"
" -i NAME restore named index\n"
" -l dump summarized TOC for this file\n"