From ce9baa06f0df657610cec8ec211565e2a535634d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 1 Jan 2008 20:31:21 +0000 Subject: [PATCH] Fix some missed copyright updates. --- contrib/dict_int/dict_int.c | 4 ++-- contrib/dict_xsyn/dict_xsyn.c | 4 ++-- contrib/pageinspect/heapfuncs.c | 4 ++-- contrib/pageinspect/rawpage.c | 4 ++-- contrib/test_parser/test_parser.c | 4 ++-- contrib/uuid-ossp/uuid-ossp.c | 4 ++-- src/backend/utils/adt/uuid.c | 4 ++-- src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl | 4 ++-- src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl | 4 ++-- .../euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c | 4 ++-- src/include/utils/uuid.h | 4 ++-- src/interfaces/libpq/libpq.rc.in | 2 +- 12 files changed, 23 insertions(+), 23 deletions(-) diff --git a/contrib/dict_int/dict_int.c b/contrib/dict_int/dict_int.c index 5cc2111adc..163a5029a0 100644 --- a/contrib/dict_int/dict_int.c +++ b/contrib/dict_int/dict_int.c @@ -3,10 +3,10 @@ * dict_int.c * Text search dictionary for integers * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.2 2007/11/15 21:14:29 momjian Exp $ + * $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.3 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/contrib/dict_xsyn/dict_xsyn.c b/contrib/dict_xsyn/dict_xsyn.c index 6dd0f6a5b3..d98792aa01 100644 --- a/contrib/dict_xsyn/dict_xsyn.c +++ b/contrib/dict_xsyn/dict_xsyn.c @@ -3,10 +3,10 @@ * dict_xsyn.c * Extended synonym dictionary * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.3 2007/11/15 22:25:14 momjian Exp $ + * $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.4 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/contrib/pageinspect/heapfuncs.c b/contrib/pageinspect/heapfuncs.c index 31b5b2e642..3b82389729 100644 --- a/contrib/pageinspect/heapfuncs.c +++ b/contrib/pageinspect/heapfuncs.c @@ -15,10 +15,10 @@ * there's hardly any use case for using these without superuser-rights * anyway. * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pageinspect/heapfuncs.c,v 1.3 2007/11/15 21:14:30 momjian Exp $ + * $PostgreSQL: pgsql/contrib/pageinspect/heapfuncs.c,v 1.4 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/contrib/pageinspect/rawpage.c b/contrib/pageinspect/rawpage.c index 7d69fd5e22..230d27133b 100644 --- a/contrib/pageinspect/rawpage.c +++ b/contrib/pageinspect/rawpage.c @@ -5,10 +5,10 @@ * * Access-method specific inspection functions are in separate files. * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/pageinspect/rawpage.c,v 1.3 2007/11/15 21:14:30 momjian Exp $ + * $PostgreSQL: pgsql/contrib/pageinspect/rawpage.c,v 1.4 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/contrib/test_parser/test_parser.c b/contrib/test_parser/test_parser.c index a6b24be1e4..3ab80ec789 100644 --- a/contrib/test_parser/test_parser.c +++ b/contrib/test_parser/test_parser.c @@ -3,10 +3,10 @@ * test_parser.c * Simple example of a text search parser * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/test_parser/test_parser.c,v 1.3 2007/11/15 22:25:14 momjian Exp $ + * $PostgreSQL: pgsql/contrib/test_parser/test_parser.c,v 1.4 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c index 0b896fce5d..456ec5728b 100644 --- a/contrib/uuid-ossp/uuid-ossp.c +++ b/contrib/uuid-ossp/uuid-ossp.c @@ -2,9 +2,9 @@ * * UUID generation functions using the OSSP UUID library * - * Copyright (c) 2007 PostgreSQL Global Development Group + * Copyright (c) 2007-2008 PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.6 2007/12/31 03:55:50 alvherre Exp $ + * $PostgreSQL: pgsql/contrib/uuid-ossp/uuid-ossp.c,v 1.7 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/uuid.c b/src/backend/utils/adt/uuid.c index 9068966e7f..216546e520 100644 --- a/src/backend/utils/adt/uuid.c +++ b/src/backend/utils/adt/uuid.c @@ -3,10 +3,10 @@ * uuid.c * Functions for the built-in type "uuid". * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/uuid.c,v 1.6 2007/11/15 22:25:16 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/uuid.c,v 1.7 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl b/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl index 7512bdf360..ee5064b3f8 100755 --- a/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl +++ b/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl @@ -1,8 +1,8 @@ #! /usr/bin/perl # -# Copyright (c) 2007, PostgreSQL Global Development Group +# Copyright (c) 2007-2008, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl,v 1.1 2007/03/25 11:56:02 ishii Exp $ +# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_EUC_JIS_2004.pl,v 1.2 2008/01/01 20:31:21 tgl Exp $ # # Generate UTF-8 <--> EUC_JIS_2004 code conversion tables from # "euc-jis-2004-std.txt" (http://x0213.org) diff --git a/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl b/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl index 203fef41c0..826d33ff46 100755 --- a/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl +++ b/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl @@ -1,8 +1,8 @@ #! /usr/bin/perl # -# Copyright (c) 2007, PostgreSQL Global Development Group +# Copyright (c) 2007-2008, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl,v 1.1 2007/03/25 11:56:02 ishii Exp $ +# $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/UCS_to_SHIFT_JIS_2004.pl,v 1.2 2008/01/01 20:31:21 tgl Exp $ # # Generate UTF-8 <--> SHIFT_JIS_2004 code conversion tables from # "sjis-0213-2004-std.txt" (http://x0213.org) diff --git a/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c b/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c index a2ff4a9093..90d6f30151 100644 --- a/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c +++ b/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c @@ -2,10 +2,10 @@ * * EUC_JIS_2004, SHIFT_JIS_2004 * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c,v 1.2 2007/11/15 21:14:40 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jis_2004_and_shift_jis_2004/euc_jis_2004_and_shift_jis_2004.c,v 1.3 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/uuid.h b/src/include/utils/uuid.h index 88607ccef7..d4bc73c2cb 100644 --- a/src/include/utils/uuid.h +++ b/src/include/utils/uuid.h @@ -5,9 +5,9 @@ * to avoid conflicts with any uuid_t type that might be defined by * the system headers. * - * Copyright (c) 2007, PostgreSQL Global Development Group + * Copyright (c) 2007-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/utils/uuid.h,v 1.3 2007/11/15 21:14:45 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/uuid.h,v 1.4 2008/01/01 20:31:21 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/interfaces/libpq/libpq.rc.in b/src/interfaces/libpq/libpq.rc.in index 8498b78555..482faf410d 100644 --- a/src/interfaces/libpq/libpq.rc.in +++ b/src/interfaces/libpq/libpq.rc.in @@ -17,7 +17,7 @@ BEGIN VALUE "FileDescription", "PostgreSQL Access Library\0" VALUE "FileVersion", "8.3.0\0" VALUE "InternalName", "libpq\0" - VALUE "LegalCopyright", "Copyright (C) 2007\0" + VALUE "LegalCopyright", "Copyright (C) 2008\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "libpq.dll\0" VALUE "ProductName", "PostgreSQL\0" -- 2.11.0