diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2004-11-09 14:39:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2004-11-09 14:39:44 +0000 |
commit | 7d8578a0c27326fe4769da5ba59de8780617938d (patch) | |
tree | 61702e197db2447027939ba370d3d1fed3e14686 /src/bin/psql/command.c | |
parent | ea182a9ef40ab3f163910e214e974dee385b0b73 (diff) |
Clarify some strings
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 6530677bf75..ef6f5d9b845 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2004, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.133 2004/11/06 17:56:40 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.134 2004/11/09 14:39:43 petere Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -1145,7 +1145,7 @@ do_edit(const char *filename_arg, PQExpBuffer query_buf) ret = GetTempPath(MAXPGPATH, tmpdir); if (ret == 0 || ret > MAXPGPATH) { - psql_error("Can not locate temporary directory: %s", + psql_error("cannot locate temporary directory: %s", !ret ? strerror(errno) : ""); return false; } |