From: Peter Eisentraut Date: Wed, 10 Jun 2009 21:51:56 +0000 (+0000) Subject: Clarify error message X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=8e80c451fe47149b7f47deb14187e9e605962ec3;p=users%2Fsimon%2Fpostgres.git Clarify error message --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 5f54431393..fe8d98ca9e 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -215,7 +215,7 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool if (showWindow && pset.sversion < 80400) { - fprintf(stderr, _("\\df does not take a \"w\" option in %d.%d.\n"), + fprintf(stderr, _("\\df does not take a \"w\" option with server version %d.%d\n"), pset.sversion / 10000, (pset.sversion / 100) % 100); return true; }