aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-13 21:03:36 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-13 21:03:36 +0000
commitd29a2ee3c0731f5f922e21562c6d9ffd84583a07 (patch)
tree47f8e4387bd0eaa7b88239fa60e5553201d001c9 /src
parent15aa0252da7906130963e863435d170d7a90d19f (diff)
downloadpostgresql-d29a2ee3c0731f5f922e21562c6d9ffd84583a07.tar.gz
postgresql-d29a2ee3c0731f5f922e21562c6d9ffd84583a07.zip
Make new strings more alike previously existing messages.
Diffstat (limited to 'src')
-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 4f6a386c148..b7cdcae45ef 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.97 2009/04/05 04:19:58 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.98 2009/04/13 21:03:36 alvherre Exp $
*
*-------------------------------------------------------------------------
*/
@@ -304,7 +304,7 @@ main(int argc, char **argv)
{
if (opts->filename)
{
- fprintf(stderr, _("%s: cannot specify both -d and -f output\n"),
+ fprintf(stderr, _("%s: options -d/--dbname and -f/--file cannot be used together\n"),
progname);
fprintf(stderr, _("Try \"%s --help\" for more information.\n"),
progname);
@@ -316,7 +316,7 @@ main(int argc, char **argv)
/* Can't do single-txn mode with multiple connections */
if (opts->single_txn && opts->number_of_jobs > 1)
{
- fprintf(stderr, _("%s: cannot specify both --single-transaction and multiple jobs\n"),
+ fprintf(stderr, _("%s: options -1/--single-transaction and -j/--jobs cannot be used together\n"),
progname);
exit(1);
}