aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-10-21 00:43:46 +0000
committerBruce Momjian <bruce@momjian.us>1999-10-21 00:43:46 +0000
commit4931dea61902b13f717f68aea95a6efdb301f69a (patch)
treedc1bc3b890b82bbf0a546e9f43c2b7a23dae6c06 /src
parent42b991fd1f951374fb37bd1b9844faf16c74a38e (diff)
downloadpostgresql-4931dea61902b13f717f68aea95a6efdb301f69a.tar.gz
postgresql-4931dea61902b13f717f68aea95a6efdb301f69a.zip
Make psql startup banner cleaner.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/psql.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index ea970e15ddb..96edb71c1b8 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.190 1999/10/14 01:28:42 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.191 1999/10/21 00:43:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2992,9 +2992,8 @@ main(int argc, char **argv)
exit(listAllDbs(&settings));
if (!settings.quiet && !settings.notty && !singleQuery && !qfilename)
{
- printf("Welcome to the POSTGRESQL interactive sql monitor:\n");
- printf(" Please read the file COPYRIGHT for copyright terms "
- "of POSTGRESQL\n");
+ printf("Welcome to the PostgreSQL interactive terminal.\n");
+ printf("(Please read the copyright file for legal issues.)\n");
if ((version = selectVersion(&settings)) != NULL)
printf("[%s]\n", version);