diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-03-10 15:46:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-03-10 15:46:03 +0000 |
commit | 51b2b6433b33c449fd92739cb93da756dc4ce3c2 (patch) | |
tree | d37053f8cfa78864920cd959fcd6225df882acce /src/bin/psql/help.c | |
parent | aa83bc04e089e13f2746ba55720e5993268c46f5 (diff) |
Cleanup up psql \connect and \pset pager setting display, Dennis
Bj?rklund.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 2dcf798d9dd..d1a30e40ae7 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.69 2003/01/07 20:56:07 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.70 2003/03/10 15:46:03 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -173,7 +173,7 @@ slashUsage(unsigned short int pager) */ fprintf(output, _("General\n")); fprintf(output, _(" \\c[onnect] [DBNAME|- [USER]]\n" - " connect to new database (currently \"%s\")\n"), + " connect to new database (currently \"%s\")\n"), PQdb(pset.db)); fprintf(output, _(" \\cd [DIR] change the current working directory\n")); fprintf(output, _(" \\copyright show PostgreSQL usage and distribution terms\n")); |