]> granicus.if.org Git - postgresql/commitdiff
This patch fixes a bug in the error message emitted by pg_restore on an
authorNeil Conway <neilc@samurai.com>
Sat, 30 Apr 2005 08:00:55 +0000 (08:00 +0000)
committerNeil Conway <neilc@samurai.com>
Sat, 30 Apr 2005 08:00:55 +0000 (08:00 +0000)
incorrect -F argument: write_msg() expects its first parameter to be a
"module name", not the format string.

src/bin/pg_dump/pg_restore.c

index 33aafcd6c453d3f47a2a3c90eafffc67878fe374..2189c61d4724c1796bae11b3167c86d64e9a402e 100644 (file)
@@ -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);
                }