summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2005-01-01 20:44:34 +0000
committerTom Lane2005-01-01 20:44:34 +0000
commit6b71705b5bfaedba09391d7c2bb96e4dc7285a9a (patch)
treeea7a64a7b8c2fabb4c3c82060129531e57fe52db
parent1c1898b2ae5c3a6c7b1cbaac8df01c92cce3427a (diff)
Some more missed copyright notices. Many of these look like they
should have been caught by the src/tools/copyright script ... why weren't they?
-rw-r--r--contrib/dblink/README.dblink2
-rw-r--r--contrib/fuzzystrmatch/README.fuzzystrmatch2
-rw-r--r--contrib/tablefunc/README.tablefunc2
-rw-r--r--src/backend/catalog/information_schema.sql2
-rw-r--r--src/backend/catalog/system_views.sql2
-rw-r--r--src/backend/nodes/bitmapset.c2
-rw-r--r--src/backend/nodes/value.c2
-rw-r--r--src/backend/postmaster/syslogger.c2
-rw-r--r--src/backend/utils/adt/array_userfuncs.c2
-rw-r--r--src/backend/utils/mb/Unicode/Makefile2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_8859.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_BIG5.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_GBK.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl2
-rwxr-xr-xsrc/backend/utils/mb/Unicode/UCS_to_SJIS.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_UHC.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_WIN874.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_WINX.pl2
-rw-r--r--src/backend/utils/mb/Unicode/UCS_to_cyrillic.pl2
-rw-r--r--src/bin/Makefile2
-rw-r--r--src/bin/ipcclean/Makefile2
-rw-r--r--src/bin/pg_config/Makefile2
-rw-r--r--src/bin/pg_controldata/Makefile2
-rw-r--r--src/bin/pg_dump/Makefile2
-rw-r--r--src/bin/pg_resetxlog/Makefile2
-rw-r--r--src/bin/psql/Makefile2
-rw-r--r--src/bin/psql/create_help.pl2
-rw-r--r--src/bin/scripts/Makefile2
-rw-r--r--src/include/getaddrinfo.h2
-rw-r--r--src/include/getopt_long.h2
-rw-r--r--src/include/libpq/ip.h2
-rw-r--r--src/include/nodes/bitmapset.h2
-rw-r--r--src/include/nodes/value.h2
-rw-r--r--src/include/postmaster/syslogger.h2
-rw-r--r--src/include/utils/errcodes.h2
-rw-r--r--src/interfaces/ecpg/preproc/Makefile2
-rw-r--r--src/interfaces/libpq/libpq.rc.in2
-rw-r--r--src/interfaces/libpq/pthread-win32.c2
-rw-r--r--src/pl/plpgsql/src/plerrcodes.h2
-rw-r--r--src/port/getaddrinfo.c2
-rw-r--r--src/tools/thread/Makefile2
45 files changed, 45 insertions, 45 deletions
diff --git a/contrib/dblink/README.dblink b/contrib/dblink/README.dblink
index a1d2110602..22db350491 100644
--- a/contrib/dblink/README.dblink
+++ b/contrib/dblink/README.dblink
@@ -8,7 +8,7 @@
* Darko Prenosil <[email protected]>
* Shridhar Daithankar <[email protected]>
*
- * Copyright (c) 2001-2004, PostgreSQL Global Development Group
+ * Copyright (c) 2001-2005, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
* Permission to use, copy, modify, and distribute this software and its
diff --git a/contrib/fuzzystrmatch/README.fuzzystrmatch b/contrib/fuzzystrmatch/README.fuzzystrmatch
index 44061f9672..876bdef284 100644
--- a/contrib/fuzzystrmatch/README.fuzzystrmatch
+++ b/contrib/fuzzystrmatch/README.fuzzystrmatch
@@ -5,7 +5,7 @@
*
* Joe Conway <[email protected]>
*
- * Copyright (c) 2001-2004, PostgreSQL Global Development Group
+ * Copyright (c) 2001-2005, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
* levenshtein()
diff --git a/contrib/tablefunc/README.tablefunc b/contrib/tablefunc/README.tablefunc
index 4ad658c6a1..7097ef0095 100644
--- a/contrib/tablefunc/README.tablefunc
+++ b/contrib/tablefunc/README.tablefunc
@@ -7,7 +7,7 @@
* And contributors:
* Nabil Sayegh <[email protected]>
*
- * Copyright (c) 2002-2004, PostgreSQL Global Development Group
+ * Copyright (c) 2002-2005, PostgreSQL Global Development Group
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without a written agreement
diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql
index 7ef9f914bd..a5ccf5cbd6 100644
--- a/src/backend/catalog/information_schema.sql
+++ b/src/backend/catalog/information_schema.sql
@@ -2,7 +2,7 @@
* SQL Information Schema
* as defined in ISO 9075-2:1999 chapter 20
*
- * Copyright 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*/
diff --git a/src/backend/catalog/system_views.sql b/src/backend/catalog/system_views.sql
index 19204bcb03..8ef1790a2e 100644
--- a/src/backend/catalog/system_views.sql
+++ b/src/backend/catalog/system_views.sql
@@ -1,7 +1,7 @@
/*
* PostgreSQL System Views
*
- * Copyright 1996-2003, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*/
diff --git a/src/backend/nodes/bitmapset.c b/src/backend/nodes/bitmapset.c
index cede80dea8..052beaaaec 100644
--- a/src/backend/nodes/bitmapset.c
+++ b/src/backend/nodes/bitmapset.c
@@ -11,7 +11,7 @@
* bms_is_empty() in preference to testing for NULL.)
*
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL$
diff --git a/src/backend/nodes/value.c b/src/backend/nodes/value.c
index ff0a13e4ea..6f1f17dcdb 100644
--- a/src/backend/nodes/value.c
+++ b/src/backend/nodes/value.c
@@ -4,7 +4,7 @@
* implementation of Value nodes
*
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/backend/postmaster/syslogger.c b/src/backend/postmaster/syslogger.c
index 49e39ef6a0..7ae1151392 100644
--- a/src/backend/postmaster/syslogger.c
+++ b/src/backend/postmaster/syslogger.c
@@ -14,7 +14,7 @@
*
* Author: Andreas Pflug <[email protected]>
*
- * Copyright (c) 2004, PostgreSQL Global Development Group
+ * Copyright (c) 2004-2005, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/backend/utils/adt/array_userfuncs.c b/src/backend/utils/adt/array_userfuncs.c
index 1a5ac448d1..22d5457ae4 100644
--- a/src/backend/utils/adt/array_userfuncs.c
+++ b/src/backend/utils/adt/array_userfuncs.c
@@ -3,7 +3,7 @@
* array_userfuncs.c
* Misc user-visible array support functions
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL$
diff --git a/src/backend/utils/mb/Unicode/Makefile b/src/backend/utils/mb/Unicode/Makefile
index ae15ad713d..96844276d8 100644
--- a/src/backend/utils/mb/Unicode/Makefile
+++ b/src/backend/utils/mb/Unicode/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/backend/utils/mb/Unicode
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_8859.pl b/src/backend/utils/mb/Unicode/UCS_to_8859.pl
index 0add94c613..4cba090e36 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_8859.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_8859.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl b/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl
index 4b5edcdc45..86d31d0c0e 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_BIG5.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl b/src/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl
index ef1b71ec19..a16564a99c 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl b/src/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl
index 9b33a12b83..7d8efc868d 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl b/src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl
index 565341ea63..66ec1ebd61 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl b/src/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl
index c41835938e..c24eefb0a4 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_GBK.pl b/src/backend/utils/mb/Unicode/UCS_to_GBK.pl
index 3c199c8222..69201c685a 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_GBK.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_GBK.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl b/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl
index 1f9d984807..ed832e71d6 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_JOHAB.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_SJIS.pl b/src/backend/utils/mb/Unicode/UCS_to_SJIS.pl
index 5af56a3924..09fdba25b6 100755
--- a/src/backend/utils/mb/Unicode/UCS_to_SJIS.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_SJIS.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_UHC.pl b/src/backend/utils/mb/Unicode/UCS_to_UHC.pl
index 5ecf2ad493..fd598af60b 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_UHC.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_UHC.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_WIN874.pl b/src/backend/utils/mb/Unicode/UCS_to_WIN874.pl
index f05c07c6cf..94d851c55d 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_WIN874.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_WIN874.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_WINX.pl b/src/backend/utils/mb/Unicode/UCS_to_WINX.pl
index daec19e028..1e2fb41aad 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_WINX.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_WINX.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/backend/utils/mb/Unicode/UCS_to_cyrillic.pl b/src/backend/utils/mb/Unicode/UCS_to_cyrillic.pl
index d4fb82ee31..9e1b49aea2 100644
--- a/src/backend/utils/mb/Unicode/UCS_to_cyrillic.pl
+++ b/src/backend/utils/mb/Unicode/UCS_to_cyrillic.pl
@@ -1,6 +1,6 @@
#! /usr/bin/perl
#
-# Copyright (c) 2001-2004, PostgreSQL Global Development Group
+# Copyright (c) 2001-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/bin/Makefile b/src/bin/Makefile
index d678da8913..39fea4e57b 100644
--- a/src/bin/Makefile
+++ b/src/bin/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin (client programs)
#
-# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+# Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL$
diff --git a/src/bin/ipcclean/Makefile b/src/bin/ipcclean/Makefile
index e4f19a8353..d9ac7b9391 100644
--- a/src/bin/ipcclean/Makefile
+++ b/src/bin/ipcclean/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/ipcclean
#
-# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+# Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL$
diff --git a/src/bin/pg_config/Makefile b/src/bin/pg_config/Makefile
index 50a1562a02..aab54c4791 100644
--- a/src/bin/pg_config/Makefile
+++ b/src/bin/pg_config/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/pg_config
#
-# Copyright (c) 1998-2002, PostgreSQL Global Development Group
+# Copyright (c) 1998-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/bin/pg_controldata/Makefile b/src/bin/pg_controldata/Makefile
index 4e0fabc7bd..8f4a891d66 100644
--- a/src/bin/pg_controldata/Makefile
+++ b/src/bin/pg_controldata/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/pg_controldata
#
-# Copyright (c) 1998-2002, PostgreSQL Global Development Group
+# Copyright (c) 1998-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile
index e018f4a303..e774f6507f 100644
--- a/src/bin/pg_dump/Makefile
+++ b/src/bin/pg_dump/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/pg_dump
#
-# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+# Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL$
diff --git a/src/bin/pg_resetxlog/Makefile b/src/bin/pg_resetxlog/Makefile
index ef3b95c27b..6d8d19e11a 100644
--- a/src/bin/pg_resetxlog/Makefile
+++ b/src/bin/pg_resetxlog/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/pg_resetxlog
#
-# Copyright (c) 1998-2002, PostgreSQL Global Development Group
+# Copyright (c) 1998-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index 18fdd3b7aa..9934d95512 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/psql
#
-# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+# Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL$
diff --git a/src/bin/psql/create_help.pl b/src/bin/psql/create_help.pl
index e748df42d9..ed20c92aca 100644
--- a/src/bin/psql/create_help.pl
+++ b/src/bin/psql/create_help.pl
@@ -3,7 +3,7 @@
#################################################################
# create_help.pl -- converts SGML docs to internal psql help
#
-# Copyright (c) 2000-2004, PostgreSQL Global Development Group
+# Copyright (c) 2000-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#################################################################
diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile
index 3b652fa8c0..83a319b37c 100644
--- a/src/bin/scripts/Makefile
+++ b/src/bin/scripts/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/bin/scripts
#
-# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
+# Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL$
diff --git a/src/include/getaddrinfo.h b/src/include/getaddrinfo.h
index ef9ab03001..e8dde82908 100644
--- a/src/include/getaddrinfo.h
+++ b/src/include/getaddrinfo.h
@@ -13,7 +13,7 @@
* This code will also work on platforms where struct addrinfo is defined
* in the system headers but no getaddrinfo() can be located.
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/include/getopt_long.h b/src/include/getopt_long.h
index 25368267ba..6e288eabc1 100644
--- a/src/include/getopt_long.h
+++ b/src/include/getopt_long.h
@@ -2,7 +2,7 @@
* Portions Copyright (c) 1987, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
- * Portions Copyright (c) 2003, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*/
diff --git a/src/include/libpq/ip.h b/src/include/libpq/ip.h
index 6aa878244e..10ccc0ce3b 100644
--- a/src/include/libpq/ip.h
+++ b/src/include/libpq/ip.h
@@ -3,7 +3,7 @@
* ip.h
* Definitions for IPv6-aware network access.
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/include/nodes/bitmapset.h b/src/include/nodes/bitmapset.h
index 6f88ceed11..a1596bdfc6 100644
--- a/src/include/nodes/bitmapset.h
+++ b/src/include/nodes/bitmapset.h
@@ -11,7 +11,7 @@
* bms_is_empty() in preference to testing for NULL.)
*
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/include/nodes/value.h b/src/include/nodes/value.h
index cee4409e78..1ec41baa3f 100644
--- a/src/include/nodes/value.h
+++ b/src/include/nodes/value.h
@@ -4,7 +4,7 @@
* interface for Value nodes
*
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/include/postmaster/syslogger.h b/src/include/postmaster/syslogger.h
index 61daf50672..be24b0819d 100644
--- a/src/include/postmaster/syslogger.h
+++ b/src/include/postmaster/syslogger.h
@@ -3,7 +3,7 @@
* syslogger.h
* Exports from postmaster/syslogger.c.
*
- * Copyright (c) 2004, PostgreSQL Global Development Group
+ * Copyright (c) 2004-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/include/utils/errcodes.h b/src/include/utils/errcodes.h
index f22123626a..54f7380728 100644
--- a/src/include/utils/errcodes.h
+++ b/src/include/utils/errcodes.h
@@ -9,7 +9,7 @@
* string is determined by the MAKE_SQLSTATE() macro, which is not defined
* in this file; it can be defined by the caller for special purposes.
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/interfaces/ecpg/preproc/Makefile b/src/interfaces/ecpg/preproc/Makefile
index 928557bf00..066cc14516 100644
--- a/src/interfaces/ecpg/preproc/Makefile
+++ b/src/interfaces/ecpg/preproc/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for src/interfaces/ecpg/preproc
#
-# Copyright (c) 1998-2002, PostgreSQL Global Development Group
+# Copyright (c) 1998-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
diff --git a/src/interfaces/libpq/libpq.rc.in b/src/interfaces/libpq/libpq.rc.in
index 3e28c3f4ba..dac650a901 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.0.0\0"
VALUE "InternalName", "libpq\0"
- VALUE "LegalCopyright", "Copyright (C) 2004\0"
+ VALUE "LegalCopyright", "Copyright (C) 2005\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libpq.dll\0"
VALUE "ProductName", "PostgreSQL\0"
diff --git a/src/interfaces/libpq/pthread-win32.c b/src/interfaces/libpq/pthread-win32.c
index 4835cc21c0..fb7e26b5b1 100644
--- a/src/interfaces/libpq/pthread-win32.c
+++ b/src/interfaces/libpq/pthread-win32.c
@@ -3,7 +3,7 @@
* pthread-win32.c
* partial pthread implementation for win32
*
-* Copyright (c) 2004, PostgreSQL Global Development Group
+* Copyright (c) 2004-2005, PostgreSQL Global Development Group
* IDENTIFICATION
* $PostgreSQL$
*
diff --git a/src/pl/plpgsql/src/plerrcodes.h b/src/pl/plpgsql/src/plerrcodes.h
index 980da24bf4..d926e1090b 100644
--- a/src/pl/plpgsql/src/plerrcodes.h
+++ b/src/pl/plpgsql/src/plerrcodes.h
@@ -7,7 +7,7 @@
* with some sort of sed hackery, but no time for that now. It's likely
* that an exact mapping will not be what's wanted anyhow ...
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* $PostgreSQL$
*
diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c
index 22d5829811..4c08e75ead 100644
--- a/src/port/getaddrinfo.c
+++ b/src/port/getaddrinfo.c
@@ -9,7 +9,7 @@
* test for getnameinfo().
*
*
- * Copyright (c) 2003, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL$
diff --git a/src/tools/thread/Makefile b/src/tools/thread/Makefile
index 85057c18d1..af0c0e0380 100644
--- a/src/tools/thread/Makefile
+++ b/src/tools/thread/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for tools/thread
#
-# Copyright (C) 2003 by PostgreSQL Global Development Team
+# Copyright (c) 2003-2005, PostgreSQL Global Development Group
#
# $PostgreSQL$
#