8000 This patch fixes a bug in the error message emitted by pg_restore on an · jandas/postgres@6dce59c · GitHub
[go: up one dir, main page]

Skip to content

Commit 6dce59c

Browse files
author
Neil Conway
committed
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.
1 parent 9524c6b commit 6dce59c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_restore.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
*
3636
* IDENTIFICATION
37-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.33 2002/01/18 19:17:05 momjian Exp $
37+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.33.2.1 2005/04/30 08:01:58 neilc Exp $
3838
*
3939
* Modifications - 28-Jun-2000 - pjw@rhyme.com.au
4040
*
@@ -332,7 +332,7 @@ main(int argc, char **argv)
332332
break;
333333

334334
default:
335-
write_msg("unrecognized archive format '%s'; please specify 't' or 'c'\n",
335+
write_msg(NULL, "unrecognized archive format '%s'; please specify 't' or 'c'\n",
336336
opts->formatName);
337337
exit(1);
338338
}

0 commit comments

Comments
 (0)
0