Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4931dea

Browse files
committed
Make psql startup banner cleaner.
1 parent 42b991f commit 4931dea

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/bin/psql/psql.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.190 1999/10/14 01:28:42 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.191 1999/10/21 00:43:46 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -2992,9 +2992,8 @@ main(int argc, char **argv)
29922992
exit(listAllDbs(&settings));
29932993
if (!settings.quiet && !settings.notty && !singleQuery && !qfilename)
29942994
{
2995-
printf("Welcome to the POSTGRESQL interactive sql monitor:\n");
2996-
printf(" Please read the file COPYRIGHT for copyright terms "
2997-
"of POSTGRESQL\n");
2995+
printf("Welcome to the PostgreSQL interactive terminal.\n");
2996+
printf("(Please read the copyright file for legal issues.)\n");
29982997

29992998
if ((version = selectVersion(&settings)) != NULL)
30002999
printf("[%s]\n", version);

0 commit comments

Comments
 (0)