aboutsummaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
Diffstat (limited to 'src/port')
-rw-r--r--src/port/copydir.c4
-rw-r--r--src/port/dirent.c4
-rw-r--r--src/port/dirmod.c4
-rw-r--r--src/port/exec.c4
-rw-r--r--src/port/fseeko.c4
-rw-r--r--src/port/getaddrinfo.c4
-rw-r--r--src/port/gethostname.c4
-rw-r--r--src/port/getrusage.c4
-rw-r--r--src/port/isinf.c4
-rw-r--r--src/port/kill.c4
-rw-r--r--src/port/memcmp.c4
-rw-r--r--src/port/noblock.c4
-rw-r--r--src/port/open.c4
-rw-r--r--src/port/path.c4
-rw-r--r--src/port/pgsleep.c4
-rw-r--r--src/port/pgstrcasecmp.c4
-rw-r--r--src/port/pipe.c4
-rw-r--r--src/port/random.c4
-rw-r--r--src/port/sprompt.c4
-rw-r--r--src/port/srandom.c4
-rw-r--r--src/port/strdup.c4
-rw-r--r--src/port/strlcpy.c4
-rw-r--r--src/port/strtol.c2
-rw-r--r--src/port/thread.c4
-rw-r--r--src/port/unsetenv.c4
-rw-r--r--src/port/win32error.c4
26 files changed, 51 insertions, 51 deletions
diff --git a/src/port/copydir.c b/src/port/copydir.c
index ef441e5ad3f..4310f2a7098 100644
--- a/src/port/copydir.c
+++ b/src/port/copydir.c
@@ -3,7 +3,7 @@
* copydir.c
* copies a directory
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, 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.18 2006/07/18 22:36:46 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/copydir.c,v 1.19 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/dirent.c b/src/port/dirent.c
index b267896639e..e36f5025ddf 100644
--- a/src/port/dirent.c
+++ b/src/port/dirent.c
@@ -3,12 +3,12 @@
* dirent.c
* opendir/readdir/closedir for win32/msvc
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/dirent.c,v 1.3 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/dirent.c,v 1.4 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/dirmod.c b/src/port/dirmod.c
index 5f4f97e9c1a..06f66305cac 100644
--- a/src/port/dirmod.c
+++ b/src/port/dirmod.c
@@ -3,14 +3,14 @@
* dirmod.c
* rename/unlink()
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, 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.45 2006/12/04 22:23:40 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.46 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/exec.c b/src/port/exec.c
index 642bd5fdc9e..a8bd3984607 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/exec.c,v 1.43 2006/09/11 20:10:30 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/exec.c,v 1.44 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/fseeko.c b/src/port/fseeko.c
index dd4d1fd5fb0..53815f800de 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.20 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.21 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c
index b25db737a14..a8fcd721a73 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-2006, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2007, PostgreSQL Global Development Group
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.26 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.27 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/gethostname.c b/src/port/gethostname.c
index e4b6a7ddc0e..6db6aff74b2 100644
--- a/src/port/gethostname.c
+++ b/src/port/gethostname.c
@@ -3,11 +3,11 @@
* gethostname.c
* gethostname using uname
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/gethostname.c,v 1.8 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/gethostname.c,v 1.9 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/getrusage.c b/src/port/getrusage.c
index ee877ddff91..635f13b7f5c 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/getrusage.c,v 1.12 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/getrusage.c,v 1.13 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/isinf.c b/src/port/isinf.c
index 809361b55d2..5804336daae 100644
--- a/src/port/isinf.c
+++ b/src/port/isinf.c
@@ -2,12 +2,12 @@
*
* isinf.c
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/isinf.c,v 1.10 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/isinf.c,v 1.11 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/kill.c b/src/port/kill.c
index cc1429c0a58..12d5dec456a 100644
--- a/src/port/kill.c
+++ b/src/port/kill.c
@@ -3,13 +3,13 @@
* kill.c
* kill()
*
- * Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2007, 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.7 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/kill.c,v 1.8 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/memcmp.c b/src/port/memcmp.c
index 3a244d5860e..5215d591184 100644
--- a/src/port/memcmp.c
+++ b/src/port/memcmp.c
@@ -3,11 +3,11 @@
* memcmp.c
* compares memory bytes
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/memcmp.c,v 1.10 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/memcmp.c,v 1.11 2007/01/05 22:20:02 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 5180f0e0b0a..32bffc1fed9 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/noblock.c,v 1.10 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/noblock.c,v 1.11 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/open.c b/src/port/open.c
index 83fc1ca2818..a413176e3a9 100644
--- a/src/port/open.c
+++ b/src/port/open.c
@@ -4,9 +4,9 @@
* Win32 open() replacement
*
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/open.c,v 1.17 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/open.c,v 1.18 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/path.c b/src/port/path.c
index 28608e979cf..10307d09886 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/path.c,v 1.70 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/path.c,v 1.71 2007/01/05 22:20:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c
index 595812b3567..df63e32a0ed 100644
--- a/src/port/pgsleep.c
+++ b/src/port/pgsleep.c
@@ -4,9 +4,9 @@
* Portable delay handling.
*
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.9 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.10 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c
index da31f21808a..17359c70c5d 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.8 2006/10/07 21:48:43 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.9 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pipe.c b/src/port/pipe.c
index fd559404a14..80ec5d19346 100644
--- a/src/port/pipe.c
+++ b/src/port/pipe.c
@@ -3,14 +3,14 @@
* pipe.c
* pipe()
*
- * Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2007, 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.11 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/pipe.c,v 1.12 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/random.c b/src/port/random.c
index 91f65860c01..cc302ee93f0 100644
--- a/src/port/random.c
+++ b/src/port/random.c
@@ -3,12 +3,12 @@
* random.c
* random() wrapper
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/random.c,v 1.7 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/random.c,v 1.8 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/sprompt.c b/src/port/sprompt.c
index 8681fb20dce..988626fdc39 100644
--- a/src/port/sprompt.c
+++ b/src/port/sprompt.c
@@ -3,12 +3,12 @@
* sprompt.c
* simple_prompt() routine
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.18 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.19 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/srandom.c b/src/port/srandom.c
index 60127d1dc2a..fed87b1b295 100644
--- a/src/port/srandom.c
+++ b/src/port/srandom.c
@@ -3,12 +3,12 @@
* srandom.c
* srandom() wrapper
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/srandom.c,v 1.7 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/srandom.c,v 1.8 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/strdup.c b/src/port/strdup.c
index b7c87a4a35e..085b1de7f43 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/strdup.c,v 1.12 2006/09/27 15:41:24 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/strdup.c,v 1.13 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/strlcpy.c b/src/port/strlcpy.c
index 00738bfef85..745213f397c 100644
--- a/src/port/strlcpy.c
+++ b/src/port/strlcpy.c
@@ -3,11 +3,11 @@
* strlcpy.c
* strncpy done right
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/strlcpy.c,v 1.3 2006/10/04 00:30:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/strlcpy.c,v 1.4 2007/01/05 22:20:03 momjian Exp $
*
* This file was taken from OpenBSD and is used on platforms that don't
* provide strlcpy(). The OpenBSD copyright terms follow.
diff --git a/src/port/strtol.c b/src/port/strtol.c
index 2f4fac1fd63..6c5d6164d4a 100644
--- a/src/port/strtol.c
+++ b/src/port/strtol.c
@@ -1,5 +1,5 @@
/*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, 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 74e6508c36a..6252be2848f 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/thread.c,v 1.35 2006/09/27 18:40:10 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/thread.c,v 1.36 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/unsetenv.c b/src/port/unsetenv.c
index 97aa8dc43f5..69b06786245 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-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/unsetenv.c,v 1.7 2006/03/05 15:59:10 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/unsetenv.c,v 1.8 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/win32error.c b/src/port/win32error.c
index ff6ff83c048..bccc148eda1 100644
--- a/src/port/win32error.c
+++ b/src/port/win32error.c
@@ -3,10 +3,10 @@
* win32error.c
* Map win32 error codes to errno values
*
- * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/win32error.c,v 1.2 2006/06/26 12:58:43 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/win32error.c,v 1.3 2007/01/05 22:20:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/