diff options
Diffstat (limited to 'src/port')
| -rw-r--r-- | src/port/copydir.c | 4 | ||||
| -rw-r--r-- | src/port/dirmod.c | 4 | ||||
| -rw-r--r-- | src/port/exec.c | 4 | ||||
| -rw-r--r-- | src/port/fseeko.c | 4 | ||||
| -rw-r--r-- | src/port/getaddrinfo.c | 4 | ||||
| -rw-r--r-- | src/port/gethostname.c | 4 | ||||
| -rw-r--r-- | src/port/getrusage.c | 4 | ||||
| -rw-r--r-- | src/port/isinf.c | 4 | ||||
| -rw-r--r-- | src/port/kill.c | 4 | ||||
| -rw-r--r-- | src/port/memcmp.c | 4 | ||||
| -rw-r--r-- | src/port/noblock.c | 4 | ||||
| -rw-r--r-- | src/port/open.c | 4 | ||||
| -rw-r--r-- | src/port/path.c | 4 | ||||
| -rw-r--r-- | src/port/pgsleep.c | 4 | ||||
| -rw-r--r-- | src/port/pgstrcasecmp.c | 4 | ||||
| -rw-r--r-- | src/port/pipe.c | 4 | ||||
| -rw-r--r-- | src/port/random.c | 4 | ||||
| -rw-r--r-- | src/port/sprompt.c | 4 | ||||
| -rw-r--r-- | src/port/srandom.c | 4 | ||||
| -rw-r--r-- | src/port/strdup.c | 4 | ||||
| -rw-r--r-- | src/port/strtol.c | 2 | ||||
| -rw-r--r-- | src/port/thread.c | 4 | ||||
| -rw-r--r-- | src/port/unsetenv.c | 4 | ||||
| -rw-r--r-- | src/port/win32ver.rc | 2 |
24 files changed, 46 insertions, 46 deletions
diff --git a/src/port/copydir.c b/src/port/copydir.c index 8fcfa1acdef..718d99251b7 100644 --- a/src/port/copydir.c +++ b/src/port/copydir.c @@ -3,7 +3,7 @@ * copydir.c * copies a directory * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * While "xcopy /e /i /q" works fine for copying directories, on Windows XP @@ -11,7 +11,7 @@ * as a service. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/copydir.c,v 1.16 2005/10/29 00:31:52 petere Exp $ + * $PostgreSQL: pgsql/src/port/copydir.c,v 1.17 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/dirmod.c b/src/port/dirmod.c index d79b9f2fb5f..d806a9ba8d7 100644 --- a/src/port/dirmod.c +++ b/src/port/dirmod.c @@ -3,14 +3,14 @@ * dirmod.c * rename/unlink() * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * These are replacement versions of unlink and rename that work on * Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.41 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.42 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/exec.c b/src/port/exec.c index 80fbccfd3bc..563d986ec6d 100644 --- a/src/port/exec.c +++ b/src/port/exec.c @@ -4,12 +4,12 @@ * Functions for finding and validating executable files * * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/exec.c,v 1.40 2005/11/22 18:17:34 momjian Exp $ + * $PostgreSQL: pgsql/src/port/exec.c,v 1.41 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/fseeko.c b/src/port/fseeko.c index 671d7382f73..dd4d1fd5fb0 100644 --- a/src/port/fseeko.c +++ b/src/port/fseeko.c @@ -3,12 +3,12 @@ * fseeko.c * 64-bit versions of fseeko/ftello() * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.19 2005/08/11 23:05:14 momjian Exp $ + * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.20 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c index 89a073c6a8e..3117db05271 100644 --- a/src/port/getaddrinfo.c +++ b/src/port/getaddrinfo.c @@ -13,10 +13,10 @@ * use the Windows native routines, but if not, we use our own. * * - * Copyright (c) 2003-2005, PostgreSQL Global Development Group + * Copyright (c) 2003-2006, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.22 2005/12/08 17:52:11 momjian Exp $ + * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.23 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/gethostname.c b/src/port/gethostname.c index a168bdd45bd..e4b6a7ddc0e 100644 --- a/src/port/gethostname.c +++ b/src/port/gethostname.c @@ -3,11 +3,11 @@ * gethostname.c * gethostname using uname * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/gethostname.c,v 1.7 2005/07/28 04:03:14 tgl Exp $ + * $PostgreSQL: pgsql/src/port/gethostname.c,v 1.8 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/getrusage.c b/src/port/getrusage.c index b496429de1d..ee877ddff91 100644 --- a/src/port/getrusage.c +++ b/src/port/getrusage.c @@ -3,12 +3,12 @@ * getrusage.c * get information about resource utilisation * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/getrusage.c,v 1.11 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/port/getrusage.c,v 1.12 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/isinf.c b/src/port/isinf.c index 7bac8a09edf..d08e99c6453 100644 --- a/src/port/isinf.c +++ b/src/port/isinf.c @@ -2,12 +2,12 @@ * * isinf.c * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/isinf.c,v 1.8 2006/01/05 01:56:30 momjian Exp $ + * $PostgreSQL: pgsql/src/port/isinf.c,v 1.9 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/kill.c b/src/port/kill.c index 032d99893b8..cc1429c0a58 100644 --- a/src/port/kill.c +++ b/src/port/kill.c @@ -3,13 +3,13 @@ * kill.c * kill() * - * Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Copyright (c) 1996-2006, PostgreSQL Global Development Group * * This is a replacement version of kill for Win32 which sends * signals that the backend can recognize. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/kill.c,v 1.6 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/kill.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/memcmp.c b/src/port/memcmp.c index 1a2d3b84db3..3a244d5860e 100644 --- a/src/port/memcmp.c +++ b/src/port/memcmp.c @@ -3,11 +3,11 @@ * memcmp.c * compares memory bytes * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/memcmp.c,v 1.9 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/port/memcmp.c,v 1.10 2006/03/05 15:59:10 momjian Exp $ * * This file was taken from NetBSD and is used by SunOS because memcmp * on that platform does not properly compare negative bytes. The diff --git a/src/port/noblock.c b/src/port/noblock.c index 5b478320ee0..5180f0e0b0a 100644 --- a/src/port/noblock.c +++ b/src/port/noblock.c @@ -3,11 +3,11 @@ * noblock.c * set a file descriptor as non-blocking * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/noblock.c,v 1.9 2006/01/05 03:01:38 momjian Exp $ + * $PostgreSQL: pgsql/src/port/noblock.c,v 1.10 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/open.c b/src/port/open.c index d56d5178b21..f0de771e8bb 100644 --- a/src/port/open.c +++ b/src/port/open.c @@ -4,9 +4,9 @@ * Win32 open() replacement * * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/open.c,v 1.11 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/port/open.c,v 1.12 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/path.c b/src/port/path.c index c336df9a817..cb7ab9eb22b 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -3,12 +3,12 @@ * path.c * portable path handling routines * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/path.c,v 1.65 2006/02/01 12:41:45 momjian Exp $ + * $PostgreSQL: pgsql/src/port/path.c,v 1.66 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c index 658be6f7212..d39292880d2 100644 --- a/src/port/pgsleep.c +++ b/src/port/pgsleep.c @@ -4,9 +4,9 @@ * Portable delay handling. * * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.6 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c index 9feb573f6c0..98ec46c3f30 100644 --- a/src/port/pgstrcasecmp.c +++ b/src/port/pgstrcasecmp.c @@ -14,9 +14,9 @@ * NB: this code should match downcase_truncate_identifier() in scansup.c. * * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.6 2005/12/25 02:14:19 momjian Exp $ + * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/pipe.c b/src/port/pipe.c index f5bf886fc62..fd559404a14 100644 --- a/src/port/pipe.c +++ b/src/port/pipe.c @@ -3,14 +3,14 @@ * pipe.c * pipe() * - * Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Copyright (c) 1996-2006, PostgreSQL Global Development Group * * This is a replacement version of pipe for Win32 which allows * returned handles to be used in select(). Note that read/write calls * must be replaced with recv/send. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/pipe.c,v 1.10 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/pipe.c,v 1.11 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/random.c b/src/port/random.c index 227afa7b1a6..91f65860c01 100644 --- a/src/port/random.c +++ b/src/port/random.c @@ -3,12 +3,12 @@ * random.c * random() wrapper * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/random.c,v 1.6 2005/07/28 04:03:14 tgl Exp $ + * $PostgreSQL: pgsql/src/port/random.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/sprompt.c b/src/port/sprompt.c index 812c34d9e5f..1cd3baa5e1b 100644 --- a/src/port/sprompt.c +++ b/src/port/sprompt.c @@ -3,12 +3,12 @@ * sprompt.c * simple_prompt() routine * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.15 2006/03/05 05:33:12 momjian Exp $ + * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.16 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/srandom.c b/src/port/srandom.c index e25a6a42cd8..60127d1dc2a 100644 --- a/src/port/srandom.c +++ b/src/port/srandom.c @@ -3,12 +3,12 @@ * srandom.c * srandom() wrapper * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/srandom.c,v 1.6 2005/07/28 04:03:14 tgl Exp $ + * $PostgreSQL: pgsql/src/port/srandom.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/strdup.c b/src/port/strdup.c index 22f842da16d..85fa952728b 100644 --- a/src/port/strdup.c +++ b/src/port/strdup.c @@ -3,12 +3,12 @@ * strdup.c * copies a null-terminated string. * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/strdup.c,v 1.8 2005/09/27 04:53:23 tgl Exp $ + * $PostgreSQL: pgsql/src/port/strdup.c,v 1.9 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/strtol.c b/src/port/strtol.c index 866dad03e72..0a9a4e71347 100644 --- a/src/port/strtol.c +++ b/src/port/strtol.c @@ -1,5 +1,5 @@ /* - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * diff --git a/src/port/thread.c b/src/port/thread.c index a067af20d10..ed6e48a4e7b 100644 --- a/src/port/thread.c +++ b/src/port/thread.c @@ -5,9 +5,9 @@ * Prototypes and macros around system calls, used to help make * threaded libraries reentrant and safe to use from threaded applications. * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/thread.c,v 1.31 2005/10/15 02:49:51 momjian Exp $ + * $PostgreSQL: pgsql/src/port/thread.c,v 1.32 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/unsetenv.c b/src/port/unsetenv.c index bdfb3f68143..97aa8dc43f5 100644 --- a/src/port/unsetenv.c +++ b/src/port/unsetenv.c @@ -3,12 +3,12 @@ * unsetenv.c * unsetenv() emulation for machines without it * - * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/unsetenv.c,v 1.6 2005/11/22 18:17:34 momjian Exp $ + * $PostgreSQL: pgsql/src/port/unsetenv.c,v 1.7 2006/03/05 15:59:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/port/win32ver.rc b/src/port/win32ver.rc index 35f49175e44..154d81e5f93 100644 --- a/src/port/win32ver.rc +++ b/src/port/win32ver.rc @@ -17,7 +17,7 @@ BEGIN VALUE "CompanyName", "PostgreSQL Global Development Group" VALUE "FileDescription", FILEDESC VALUE "FileVersion", PG_VERSION - VALUE "LegalCopyright", "Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California." + VALUE "LegalCopyright", "Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California." VALUE "ProductName", "PostgreSQL" VALUE "ProductVersion", PG_VERSION END |
