aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-09-10 14:51:33 +0000
committerBruce Momjian <bruce@momjian.us>2001-09-10 14:51:33 +0000
commitbe18a49d394d106aa1a06d1d8da59327e85be107 (patch)
tree022d6a2c2f7f0c66ac1f98fd717fd6fa5357c2ba /src/bin/psql/command.c
parent9e46767161fdbb3904bfbb4c786a7addfd1bad91 (diff)
downloadpostgresql-be18a49d394d106aa1a06d1d8da59327e85be107.tar.gz
postgresql-be18a49d394d106aa1a06d1d8da59327e85be107.zip
> NOTE: in the command.c in three places there (I believe) is a typo:
> > "parse error at [the] end of line" > > Attached patch also fixes it. I noticed this while editing the po file. > If I'm wrong, please ignore the command.c.patch. I will revert my translation > as well then. > > -- > Serguei A. Mokhov
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 3463c2f4f44..05db50d0205 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.57 2001/09/02 23:52:19 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.58 2001/09/10 14:51:33 momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
@@ -889,7 +889,7 @@ scan_option(char **string, enum option_type type, char *quote)
if (options_string[jj] == 0)
{
- psql_error("parse error at end of line\n");
+ psql_error("parse error at the end of line\n");
*string = &options_string[jj];
return NULL;
}
@@ -963,7 +963,7 @@ scan_option(char **string, enum option_type type, char *quote)
if (options_string[jj] == 0)
{
- psql_error("parse error at end of line\n");
+ psql_error("parse error at the end of line\n");
*string = &options_string[jj];
return NULL;
}
@@ -991,7 +991,7 @@ scan_option(char **string, enum option_type type, char *quote)
len = strcspn(options_string + pos + 1, "`");
if (options_string[pos + 1 + len] == 0)
{
- psql_error("parse error at end of line\n");
+ psql_error("parse error at the end of line\n");
*string = &options_string[pos + 1 + len];
return NULL;
}