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.
This commit is contained in:
Neil Conway 2005-04-30 08:00:14 +00:00
parent f22b3b2760
commit 7ce01797bd

View File

@ -34,7 +34,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.68 2004/12/03 18:48:19 tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.68.4.1 2005/04/30 08:00:14 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -314,7 +314,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);
}