From b9b4f10b5b20525d3ee0fec4dc4c8c19bf3a71de Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 6 Oct 2006 17:14:01 +0000 Subject: Message style improvements --- src/bin/psql/copy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bin/psql/copy.c') 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 */ -- cgit v1.2.3