summaryrefslogtreecommitdiff
path: root/src/bin/psql/copy.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2006-10-06 17:14:01 +0000
committerPeter Eisentraut <peter_e@gmx.net>2006-10-06 17:14:01 +0000
commitb9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de (patch)
tree9729e2d418e7173814b89300536a6ec8a4a5e63a /src/bin/psql/copy.c
parent378c79dc78346ca8b54719ae33f99dc16152e2db (diff)
Message style improvements
Diffstat (limited to 'src/bin/psql/copy.c')
-rw-r--r--src/bin/psql/copy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index 82d92724e2d..9adbed1811c 100644
--- a/src/bin/psql/copy.c
+++ b/src/bin/psql/copy.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.69 2006/10/04 00:30:05 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.70 2006/10/06 17:14:00 petere Exp $
*/
#include "postgres_fe.h"
#include "copy.h"
@@ -713,7 +713,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary)
/* got here with longjmp */
/* Terminate data transfer */
- PQputCopyEnd(conn, _("aborted by user cancel"));
+ PQputCopyEnd(conn, _("canceled by user"));
/* Check command status and return to normal libpq state */
res = PQgetResult(conn);
@@ -840,7 +840,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary)
/* Terminate data transfer */
if (PQputCopyEnd(conn,
- OK ? NULL : _("aborted due to read failure")) <= 0)
+ OK ? NULL : _("aborted because of read failure")) <= 0)
OK = false;
/* Check command status and return to normal libpq state */