3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Team
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.13 2000/01/26 05:57:44 momjian Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.14 2000/01/26 16:10:01 momjian Exp $
7
7
*/
8
8
#include <c.h>
9
9
#include "help.h"
@@ -105,7 +105,7 @@ usage(void)
105
105
/* Display default port */
106
106
env = getenv ("PGPORT" );
107
107
printf (" -p <port> Specify database server port (default: %s)\n" ,
108
- env ? env : "hardwired" );
108
+ env ? env : "hardwired" );
109
109
110
110
puts ( " -P var[=arg] Set printing option 'var' to 'arg' (see \\pset command)" );
111
111
puts ( " -q Run quietly (no messages, only query output)" );
@@ -192,7 +192,7 @@ slashUsage(void)
192
192
/* if you add/remove a line here, change the row test above */
193
193
fprintf (fout , " \\? help\n" );
194
194
fprintf (fout , " \\c[onnect] [dbname|- [user|?]]\n"
195
- " connect to new database (currently '%s')\n" , PQdb (pset .db ));
195
+ " connect to new database (currently '%s')\n" , PQdb (pset .db ));
196
196
fprintf (fout , " \\copy ... perform SQL COPY with data stream to the client machine" );
197
197
fprintf (fout , " \\copyright show PostgreSQL usage and distribution terms\n" );
198
198
fprintf (fout , " \\d <table> describe table (or view, index, sequence)\n" );
@@ -209,7 +209,7 @@ slashUsage(void)
209
209
fprintf (fout , " \\i <fname> read and execute queries from filename\n" );
210
210
fprintf (fout , " \\l list all databases\n" );
211
211
fprintf (fout , " \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
212
- " large object operations\n" );
212
+ " large object operations\n" );
213
213
fprintf (fout , " \\o [fname] send all query results to <fname>, or |pipe\n" );
214
214
fprintf (fout , " \\p show the content of the current query buffer\n" );
215
215
fprintf (fout , " \\pset [opt] set table output options\n" );
@@ -304,11 +304,10 @@ print_copyright(void)
304
304
{
305
305
puts (
306
306
"PostgreSQL Data Base Management System\n\n"
307
- " Copyright(c) 1996 - 9 PostgreSQL Global Development Group \n\n"
307
+ "Portions Copyright (c) 1996-2000, PostgreSQL, Inc \n\n"
308
308
"This software is based on Postgres95, formerly known as Postgres, which\n"
309
309
"contains the following notice:\n\n"
310
- * Portions Copyright (c ) 1996 - 2000 , PostgreSQL , Inc
311
- "Portions Copyright(c) 1994 - 7 Regents of the University of California\n\n"
310
+ "Portions Copyright(c) 1994 - 7 Regents of the University of California\n\n"
312
311
"Permission to use, copy, modify, and distribute this software and its\n"
313
312
"documentation for any purpose, without fee, and without a written agreement\n"
314
313
"is hereby granted, provided that the above copyright notice and this paragraph\n"
0 commit comments