diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-10-23 01:31:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-10-23 01:31:32 +0000 |
commit | 627b5e9c20d91cfdd5e6fd672ec997c8fbb3a2a2 (patch) | |
tree | 540471a651e5a3ed8a8c86df2f87f44620f77207 /src | |
parent | 45c002460cd18238eab113c7259d0ddfaa44e889 (diff) | |
download | postgresql-627b5e9c20d91cfdd5e6fd672ec997c8fbb3a2a2.tar.gz postgresql-627b5e9c20d91cfdd5e6fd672ec997c8fbb3a2a2.zip |
Backup psql banner change.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/psql.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 54d15cb336f..89bd8e8e1f2 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.192 1999/10/21 01:24:53 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.193 1999/10/23 01:31:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -2992,8 +2992,9 @@ main(int argc, char **argv) exit(listAllDbs(&settings)); if (!settings.quiet && !settings.notty && !singleQuery && !qfilename) { - printf("Welcome to the PostgreSQL interactive terminal.\n"); - printf("(Please read the copyright file for legal information.)\n"); + printf("Welcome to the POSTGRESQL interactive sql monitor:\n"); + printf(" Please read the file COPYRIGHT for copyright terms " + "of POSTGRESQL\n"); if ((version = selectVersion(&settings)) != NULL) printf("[%s]\n", version); |