From: Neil Conway Date: Sat, 30 Apr 2005 08:01:29 +0000 (+0000) Subject: This patch fixes a bug in the error message emitted by pg_restore on an X-Git-Tag: REL7_3_10~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f54b0555126988e52a2e654ef28fbf651087e38;p=postgresql 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 46a3ee8b2e..44f9033bef 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.43 2002/10/18 22:05:36 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.43.2.1 2005/04/30 08:01:29 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -327,7 +327,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); }