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

Commit 2d5dd75

Browse files
committed
Update files.
1 parent 02d83c4 commit 2d5dd75

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

COPYRIGHT

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
PostgreSQL Data Base Management System (formerly known as Postgres, then
22
as Postgres95).
33

4-
Copyright (c) 1994-7 Regents of the University of California
4+
Portions Copyright 2000 by PostgreSQL Global Development Team
5+
6+
Portions Copyright (c) 1994-7 Regents of the University of California
57

68
Permission to use, copy, modify, and distribute this software and its
79
documentation for any purpose, without fee, and without a written agreement

src/bin/psql/help.c

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Team
55
*
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 $
77
*/
88
#include <c.h>
99
#include "help.h"
@@ -105,7 +105,7 @@ usage(void)
105105
/* Display default port */
106106
env = getenv("PGPORT");
107107
printf(" -p <port> Specify database server port (default: %s)\n",
108-
env ? env : "hardwired");
108+
env ? env : "hardwired");
109109

110110
puts( " -P var[=arg] Set printing option 'var' to 'arg' (see \\pset command)");
111111
puts( " -q Run quietly (no messages, only query output)");
@@ -192,7 +192,7 @@ slashUsage(void)
192192
/* if you add/remove a line here, change the row test above */
193193
fprintf(fout, " \\? help\n");
194194
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));
196196
fprintf(fout, " \\copy ... perform SQL COPY with data stream to the client machine");
197197
fprintf(fout, " \\copyright show PostgreSQL usage and distribution terms\n");
198198
fprintf(fout, " \\d <table> describe table (or view, index, sequence)\n");
@@ -209,7 +209,7 @@ slashUsage(void)
209209
fprintf(fout, " \\i <fname> read and execute queries from filename\n");
210210
fprintf(fout, " \\l list all databases\n");
211211
fprintf(fout, " \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
212-
" large object operations\n");
212+
" large object operations\n");
213213
fprintf(fout, " \\o [fname] send all query results to <fname>, or |pipe\n");
214214
fprintf(fout, " \\p show the content of the current query buffer\n");
215215
fprintf(fout, " \\pset [opt] set table output options\n");
@@ -304,11 +304,10 @@ print_copyright(void)
304304
{
305305
puts(
306306
"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"
308308
"This software is based on Postgres95, formerly known as Postgres, which\n"
309309
"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"
312311
"Permission to use, copy, modify, and distribute this software and its\n"
313312
"documentation for any purpose, without fee, and without a written agreement\n"
314313
"is hereby granted, provided that the above copyright notice and this paragraph\n"

0 commit comments

Comments
 (0)