aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-10-13 00:42:53 +0000
committerBruce Momjian <bruce@momjian.us>2004-10-13 00:42:53 +0000
commit90542f556b151bcb3c467bd8db6d3a4609f82a12 (patch)
tree8cce2b42ee795d21cea631c9c03f87988416da86
parentbac78bbac67a3b59f8cc56ecea82976038950cf1 (diff)
downloadpostgresql-90542f556b151bcb3c467bd8db6d3a4609f82a12.tar.gz
postgresql-90542f556b151bcb3c467bd8db6d3a4609f82a12.zip
Clarify pg_restore --help wording.
-rw-r--r--src/bin/pg_dump/pg_restore.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c
index 8285e875a85..9fd1a4744c8 100644
--- a/src/bin/pg_dump/pg_restore.c
+++ b/src/bin/pg_dump/pg_restore.c
@@ -34,7 +34,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.62 2004/10/12 21:54:44 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.63 2004/10/13 00:42:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -360,7 +360,7 @@ usage(const char *progname)
printf(_(" %s [OPTION]... [FILE]\n"), progname);
printf(_("\nGeneral options:\n"));
- printf(_(" -d, --dbname=NAME output database name\n"));
+ printf(_(" -d, --dbname=NAME restore database name\n"));
printf(_(" -f, --file=FILENAME output file name\n"));
printf(_(" -F, --format=c|t specify backup file format\n"));
printf(_(" -i, --ignore-version proceed even when server version mismatches\n"));
@@ -369,14 +369,14 @@ usage(const char *progname)
printf(_(" --help show this help, then exit\n"));
printf(_(" --version output version information, then exit\n"));
- printf(_("\nOptions controlling the output content:\n"));
+ printf(_("\nOptions controlling the restore:\n"));
printf(_(" -a, --data-only restore only the data, no schema\n"));
printf(_(" -c, --clean clean (drop) schema prior to create\n"));
printf(_(" -C, --create issue commands to create the database\n"));
printf(_(" -I, --index=NAME restore named index\n"));
printf(_(" -L, --use-list=FILENAME use specified table of contents for ordering\n"
" output from this file\n"));
- printf(_(" -O, --no-owner do not output commands to set object ownership\n"));
+ printf(_(" -O, --no-owner do not issue commands to set object ownership\n"));
printf(_(" -P, --function=NAME(args)\n"
" restore named function\n"));
printf(_(" -s, --schema-only restore only the schema, no data\n"));