6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
*
9
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.4 2002/08/28 20:57:22 petere Exp $
9
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.5 2002/09/02 22:18:56 petere Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -620,7 +620,7 @@ connectDatabase(const char *dbname, const char *pghost, const char *pgport,
620
620
621
621
if (!conn )
622
622
{
623
- fprintf (stderr ,_ ("%s: could notconnection to database %s\n" ),
623
+ fprintf (stderr ,_ ("%s: could notconnect to database %s\n" ),
624
624
progname ,dbname );
625
625
exit (0 );
626
626
}
@@ -643,7 +643,7 @@ connectDatabase(const char *dbname, const char *pghost, const char *pgport,
643
643
/* check to see that the backend connection was successfully made */
644
644
if (PQstatus (conn )== CONNECTION_BAD )
645
645
{
646
- fprintf (stderr ,_ ("%s: could notconnection to database %s: %s\n" ),
646
+ fprintf (stderr ,_ ("%s: could notconnect to database %s: %s\n" ),
647
647
progname ,dbname ,PQerrorMessage (conn ));
648
648
exit (0 );
649
649
}