From: Neil Conway Date: Sat, 30 Apr 2005 08:00:55 +0000 (+0000) Subject: This patch fixes a bug in the error message emitted by pg_restore on an X-Git-Tag: REL7_4_8~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=15ea6d5a2fdc57ef14ebf2c06f4f7392b6599899;p=thirdparty%2Fpostgresql.git This patch fixes a bug in the error message emitted by pg_restore on an incorrect -F argument: write_msg() expects its first parameter to be a "module name", not the format string. --- diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index 33aafcd6c45..2189c61d472 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.53 2003/10/20 21:05:12 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.53.2.1 2005/04/30 08:00:55 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -324,7 +324,7 @@ main(int argc, char **argv) break; default: - write_msg("unrecognized archive format '%s'; please specify 't' or 'c'\n", + write_msg(NULL, "unrecognized archive format '%s'; please specify 't' or 'c'\n", opts->formatName); exit(1); }