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

Commit c6c6030

Browse files
committed
Cleanup of psql \copyright
1 parent b2c55a0 commit c6c6030

File tree

2 files changed

+20
-30
lines changed

2 files changed

+20
-30
lines changed

doc/TODO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ MISC
278278

279279
SOURCE CODE
280280
-----------
281-
* Add use of 'const' for varibles in source tree
281+
* Add use of 'const' for variables in source tree
282282
* Fix C optimizer problem where fmgr_ptr calls return different types [alpha]
283283
* -Add needed includes and removed unneeded include files(Bruce)
284284
* Make configure --enable-debug add -g on compile line

src/bin/psql/help.c

Lines changed: 19 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -286,33 +286,23 @@ void
286286
print_copyright(void)
287287
{
288288
puts(
289-
"
290-
PostgreSQL Data Base Management System
291-
292-
Copyright(c) 1996 - 9 PostgreSQL Global Development Group
293-
294-
This software is based on Postgres95, formerly known as Postgres, which
295-
contains the following notice:
296-
297-
Copyright(c) 1994 - 7 Regents of the University of California
298-
299-
Permission to use, copy, modify, and distribute this software and its
300-
documentation for any purpose, without fee, and without a written agreement
301-
is hereby granted, provided that the above copyright notice and this paragraph
302-
and the following two paragraphs appear in all copies.
303-
304-
IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
305-
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
306-
PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
307-
THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
308-
DAMAGE.
309-
310-
THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
311-
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
312-
PARTICULAR PURPOSE.THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS,
313-
AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,
314-
SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
315-
316-
(end of terms) "
317-
);
289+
"PostgreSQL Data Base Management System\n\n"
290+
"Copyright(c) 1996 - 9 PostgreSQL Global Development Group\n\n"
291+
"This software is based on Postgres95, formerly known as Postgres, which\n"
292+
"contains the following notice:\n\n"
293+
"Copyright(c) 1994 - 7 Regents of the University of California\n\n"
294+
"Permission to use, copy, modify, and distribute this software and its\n"
295+
"documentation for any purpose, without fee, and without a written agreement\n"
296+
"is hereby granted, provided that the above copyright notice and this paragraph\n"
297+
"and the following two paragraphs appear in all copies.\n\n"
298+
"IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n"
299+
"DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST\n"
300+
"PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF\n"
301+
"THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\n"
302+
"DAMAGE.\n\n"
303+
"THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,\n"
304+
"BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n"
305+
"PARTICULAR PURPOSE.THE SOFTWARE PROVIDED HEREUNDER IS ON AN \"AS IS\" BASIS,\n"
306+
"AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,\n"
307+
"SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.");
318308
}

0 commit comments

Comments
 (0)