diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2016-05-21 22:17:00 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2016-05-21 22:17:00 -0400 |
commit | a50b605aa4487cbf677625a7a1bb5f2b05058d91 (patch) | |
tree | 89933f5974861fae0070d17811fe63ad0de626ca /src/bin/psql/common.c | |
parent | 768d6f90f9e44af96c22135a8eb1e83ed73c422b (diff) | |
download | postgresql-a50b605aa4487cbf677625a7a1bb5f2b05058d91.tar.gz postgresql-a50b605aa4487cbf677625a7a1bb5f2b05058d91.zip |
psql: Message style improvements
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 2c0d781302c..b8bdcc751a2 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -134,7 +134,7 @@ psql_get_variable(const char *varname, bool escape, bool as_ident) if (!pset.db) { - psql_error("can't escape without active connection\n"); + psql_error("cannot escape without active connection\n"); return NULL; } |