diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-08-01 03:33:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-08-01 03:33:02 +0000 |
commit | a67fd49091644f10980224f582019a1486d0c8e8 (patch) | |
tree | ac9af6cdc0e003de50ab8e9f249a09d3bf115bb5 /src | |
parent | f5f18af02b156cd2acf0b1f7bd7fba843f48f217 (diff) | |
download | postgresql-a67fd49091644f10980224f582019a1486d0c8e8.tar.gz postgresql-a67fd49091644f10980224f582019a1486d0c8e8.zip |
Fix psql error output.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index a408a38aeee..0332d75656b 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.78 1997/07/24 20:01:33 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.79 1997/08/01 03:33:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -123,7 +123,7 @@ usage(char *progname) fprintf(stderr, "\t -d dbName specify database name\n"); fprintf(stderr, "\t -e echo the query sent to the backend\n"); fprintf(stderr, "\t -f filename use file as a source of queries\n"); - fprintf(stderr, "\t -F sep set the field separator (default is " ")\n"); + fprintf(stderr, "\t -F sep set the field separator (default is "|")\n"); fprintf(stderr, "\t -h host set database server host\n"); fprintf(stderr, "\t -H turn on html3.0 table output\n"); fprintf(stderr, "\t -l list available databases\n"); |