summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2010-09-20 22:08:53 +0200
committerMagnus Hagander <magnus@hagander.net>2010-09-20 22:08:53 +0200
commit9f2e211386931f7aee48ffbc2fcaef1632d8329f (patch)
treeeebf0b0367f8e957957cf5468ddc0c46d9da80f6 /src/port
parentcecde97577fafddc6b3aa354b9b77a3a54b063a9 (diff)
downloadpostgresql-9f2e211386931f7aee48ffbc2fcaef1632d8329f.tar.gz
Remove cvs keywords from all files.
Diffstat (limited to 'src/port')
-rw-r--r--src/port/Makefile2
-rw-r--r--src/port/README2
-rw-r--r--src/port/chklocale.c2
-rw-r--r--src/port/crypt.c2
-rw-r--r--src/port/dirent.c2
-rw-r--r--src/port/dirmod.c2
-rw-r--r--src/port/erand48.c2
-rw-r--r--src/port/exec.c2
-rw-r--r--src/port/fseeko.c2
-rw-r--r--src/port/getaddrinfo.c2
-rw-r--r--src/port/gethostname.c2
-rw-r--r--src/port/getopt.c2
-rw-r--r--src/port/getopt_long.c2
-rw-r--r--src/port/getrusage.c2
-rw-r--r--src/port/gettimeofday.c2
-rw-r--r--src/port/inet_aton.c2
-rw-r--r--src/port/isinf.c2
-rw-r--r--src/port/kill.c2
-rw-r--r--src/port/memcmp.c2
-rw-r--r--src/port/noblock.c2
-rw-r--r--src/port/open.c2
-rw-r--r--src/port/path.c2
-rw-r--r--src/port/pgsleep.c2
-rw-r--r--src/port/pgstrcasecmp.c2
-rw-r--r--src/port/pipe.c2
-rw-r--r--src/port/pthread-win32.h2
-rw-r--r--src/port/qsort.c2
-rw-r--r--src/port/qsort_arg.c2
-rw-r--r--src/port/random.c2
-rw-r--r--src/port/rint.c2
-rw-r--r--src/port/snprintf.c2
-rw-r--r--src/port/sprompt.c2
-rw-r--r--src/port/srandom.c2
-rw-r--r--src/port/strdup.c2
-rw-r--r--src/port/strerror.c2
-rw-r--r--src/port/strlcat.c2
-rw-r--r--src/port/strlcpy.c2
-rw-r--r--src/port/strtol.c2
-rw-r--r--src/port/strtoul.c2
-rw-r--r--src/port/thread.c2
-rw-r--r--src/port/unsetenv.c2
-rw-r--r--src/port/win32env.c2
-rw-r--r--src/port/win32error.c2
43 files changed, 43 insertions, 43 deletions
diff --git a/src/port/Makefile b/src/port/Makefile
index c9b153d7da..327ec7246c 100644
--- a/src/port/Makefile
+++ b/src/port/Makefile
@@ -19,7 +19,7 @@
# OBJS adds additional object files that are always compiled.
#
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/port/Makefile,v 1.39 2010/07/02 17:03:30 rhaas Exp $
+# src/port/Makefile
#
#-------------------------------------------------------------------------
diff --git a/src/port/README b/src/port/README
index 147e35faf6..58fb32d9f9 100644
--- a/src/port/README
+++ b/src/port/README
@@ -1,4 +1,4 @@
-$PostgreSQL: pgsql/src/port/README,v 1.5 2010/08/19 05:57:35 petere Exp $
+src/port/README
libpgport
=========
diff --git a/src/port/chklocale.c b/src/port/chklocale.c
index d26b86518d..00f1ea817f 100644
--- a/src/port/chklocale.c
+++ b/src/port/chklocale.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/chklocale.c,v 1.17 2010/05/06 02:12:38 itagaki Exp $
+ * src/port/chklocale.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/crypt.c b/src/port/crypt.c
index 85b98c5704..7f18e1d2a7 100644
--- a/src/port/crypt.c
+++ b/src/port/crypt.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/port/crypt.c,v 1.17 2010/07/06 19:19:01 momjian Exp $ */
+/* src/port/crypt.c */
/* $NetBSD: crypt.c,v 1.18 2001/03/01 14:37:35 wiz Exp $ */
/*
diff --git a/src/port/dirent.c b/src/port/dirent.c
index 4034ef42f3..2efe855978 100644
--- a/src/port/dirent.c
+++ b/src/port/dirent.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/dirent.c,v 1.7 2010/01/02 16:58:13 momjian Exp $
+ * src/port/dirent.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/dirmod.c b/src/port/dirmod.c
index d47c03e445..a8b8a904df 100644
--- a/src/port/dirmod.c
+++ b/src/port/dirmod.c
@@ -10,7 +10,7 @@
* Win32 (NT4 and newer).
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.63 2010/07/06 19:19:01 momjian Exp $
+ * src/port/dirmod.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/erand48.c b/src/port/erand48.c
index ce623e2e96..64db7a5376 100644
--- a/src/port/erand48.c
+++ b/src/port/erand48.c
@@ -20,7 +20,7 @@
* to anyone/anything when using this software.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/erand48.c,v 1.1 2009/07/16 17:43:52 tgl Exp $
+ * src/port/erand48.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/exec.c b/src/port/exec.c
index 68bce6f962..742318d057 100644
--- a/src/port/exec.c
+++ b/src/port/exec.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/exec.c,v 1.68 2010/02/26 02:01:38 momjian Exp $
+ * src/port/exec.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/fseeko.c b/src/port/fseeko.c
index ab6067e5f0..782e1679b4 100644
--- a/src/port/fseeko.c
+++ b/src/port/fseeko.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/fseeko.c,v 1.25 2010/05/15 10:14:20 momjian Exp $
+ * src/port/fseeko.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c
index 4133aed54d..f867744eee 100644
--- a/src/port/getaddrinfo.c
+++ b/src/port/getaddrinfo.c
@@ -16,7 +16,7 @@
* Copyright (c) 2003-2010, PostgreSQL Global Development Group
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.30 2010/01/02 16:58:13 momjian Exp $
+ * src/port/getaddrinfo.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/gethostname.c b/src/port/gethostname.c
index 5e94fa0d7e..4a6fdc6d92 100644
--- a/src/port/gethostname.c
+++ b/src/port/gethostname.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/gethostname.c,v 1.12 2010/01/02 16:58:13 momjian Exp $
+ * src/port/gethostname.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/getopt.c b/src/port/getopt.c
index ed7f421a47..90c882c1fd 100644
--- a/src/port/getopt.c
+++ b/src/port/getopt.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.14 2009/06/11 14:49:15 momjian Exp $ */
+/* src/port/getopt.c */
/* This is used by psql under Win32 */
diff --git a/src/port/getopt_long.c b/src/port/getopt_long.c
index 9433b56827..418cce7c8b 100644
--- a/src/port/getopt_long.c
+++ b/src/port/getopt_long.c
@@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $PostgreSQL: pgsql/src/port/getopt_long.c,v 1.8 2009/06/11 14:49:15 momjian Exp $
+ * src/port/getopt_long.c
*/
#include "c.h"
diff --git a/src/port/getrusage.c b/src/port/getrusage.c
index 920e933273..e9747640f9 100644
--- a/src/port/getrusage.c
+++ b/src/port/getrusage.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/getrusage.c,v 1.18 2010/01/02 16:58:13 momjian Exp $
+ * src/port/getrusage.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/gettimeofday.c b/src/port/gettimeofday.c
index 8387088461..75a91993b7 100644
--- a/src/port/gettimeofday.c
+++ b/src/port/gettimeofday.c
@@ -2,7 +2,7 @@
* gettimeofday.c
* Win32 gettimeofday() replacement
*
- * $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.9 2006/03/04 04:44:07 momjian Exp $
+ * src/port/gettimeofday.c
*
* Copyright (c) 2003 SRA, Inc.
* Copyright (c) 2003 SKC, Inc.
diff --git a/src/port/inet_aton.c b/src/port/inet_aton.c
index 31e19ea78f..473f51f88d 100644
--- a/src/port/inet_aton.c
+++ b/src/port/inet_aton.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/port/inet_aton.c,v 1.10 2007/03/26 21:44:11 momjian Exp $
+/* src/port/inet_aton.c
*
* This inet_aton() function was taken from the GNU C library and
* incorporated into Postgres for those systems which do not have this
diff --git a/src/port/isinf.c b/src/port/isinf.c
index 32b6d66d31..dc5ebf9618 100644
--- a/src/port/isinf.c
+++ b/src/port/isinf.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/isinf.c,v 1.14 2010/01/02 16:58:13 momjian Exp $
+ * src/port/isinf.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/kill.c b/src/port/kill.c
index c1a639330b..7e7f1b311c 100644
--- a/src/port/kill.c
+++ b/src/port/kill.c
@@ -9,7 +9,7 @@
* signals that the backend can recognize.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/kill.c,v 1.14 2010/01/31 17:18:28 mha Exp $
+ * src/port/kill.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/memcmp.c b/src/port/memcmp.c
index 761d81c9c3..365e3e3e28 100644
--- a/src/port/memcmp.c
+++ b/src/port/memcmp.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/memcmp.c,v 1.14 2010/01/02 16:58:13 momjian Exp $
+ * src/port/memcmp.c
*
* 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 ace3bfdb91..8cd6a345a1 100644
--- a/src/port/noblock.c
+++ b/src/port/noblock.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/noblock.c,v 1.15 2010/01/10 14:16:08 mha Exp $
+ * src/port/noblock.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/open.c b/src/port/open.c
index 51700cd2ef..9d66a38114 100644
--- a/src/port/open.c
+++ b/src/port/open.c
@@ -6,7 +6,7 @@
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/open.c,v 1.30 2010/01/02 16:58:13 momjian Exp $
+ * src/port/open.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/path.c b/src/port/path.c
index 305eff511e..003368f96c 100644
--- a/src/port/path.c
+++ b/src/port/path.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/path.c,v 1.80 2010/01/02 16:58:13 momjian Exp $
+ * src/port/path.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c
index 884e257dd7..744334e6af 100644
--- a/src/port/pgsleep.c
+++ b/src/port/pgsleep.c
@@ -6,7 +6,7 @@
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.13 2010/01/02 16:58:13 momjian Exp $
+ * src/port/pgsleep.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c
index c5eba13e6c..f6359f25b3 100644
--- a/src/port/pgstrcasecmp.c
+++ b/src/port/pgstrcasecmp.c
@@ -16,7 +16,7 @@
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.12 2010/01/02 16:58:13 momjian Exp $
+ * src/port/pgstrcasecmp.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pipe.c b/src/port/pipe.c
index 4d04ba9da4..a30edf613d 100644
--- a/src/port/pipe.c
+++ b/src/port/pipe.c
@@ -10,7 +10,7 @@
* must be replaced with recv/send.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/pipe.c,v 1.17 2010/07/06 19:19:01 momjian Exp $
+ * src/port/pipe.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/pthread-win32.h b/src/port/pthread-win32.h
index 799637345d..97ccc17a12 100644
--- a/src/port/pthread-win32.h
+++ b/src/port/pthread-win32.h
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/src/port/pthread-win32.h,v 1.6 2009/06/11 14:49:15 momjian Exp $
+ * src/port/pthread-win32.h
*/
#ifndef __PTHREAD_H
#define __PTHREAD_H
diff --git a/src/port/qsort.c b/src/port/qsort.c
index f7dae50c28..8e2c6d92c2 100644
--- a/src/port/qsort.c
+++ b/src/port/qsort.c
@@ -9,7 +9,7 @@
*
* CAUTION: if you change this file, see also qsort_arg.c
*
- * $PostgreSQL: pgsql/src/port/qsort.c,v 1.13 2007/03/18 05:36:50 neilc Exp $
+ * src/port/qsort.c
*/
/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
diff --git a/src/port/qsort_arg.c b/src/port/qsort_arg.c
index cf08ddb682..28d1894992 100644
--- a/src/port/qsort_arg.c
+++ b/src/port/qsort_arg.c
@@ -9,7 +9,7 @@
*
* CAUTION: if you change this file, see also qsort.c
*
- * $PostgreSQL: pgsql/src/port/qsort_arg.c,v 1.4 2007/03/18 05:36:50 neilc Exp $
+ * src/port/qsort_arg.c
*/
/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
diff --git a/src/port/random.c b/src/port/random.c
index 57c63fc54d..525b2bea41 100644
--- a/src/port/random.c
+++ b/src/port/random.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/random.c,v 1.11 2010/01/02 16:58:13 momjian Exp $
+ * src/port/random.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/rint.c b/src/port/rint.c
index 0e32dd9272..9c4d775357 100644
--- a/src/port/rint.c
+++ b/src/port/rint.c
@@ -4,7 +4,7 @@
* rint() implementation
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/rint.c,v 1.4 2010/02/06 05:42:49 tgl Exp $
+ * src/port/rint.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/snprintf.c b/src/port/snprintf.c
index b111f9707d..88cb4d4c2b 100644
--- a/src/port/snprintf.c
+++ b/src/port/snprintf.c
@@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $PostgreSQL: pgsql/src/port/snprintf.c,v 1.36 2010/07/06 19:19:01 momjian Exp $
+ * src/port/snprintf.c
*/
#include "c.h"
diff --git a/src/port/sprompt.c b/src/port/sprompt.c
index 8441300871..856833b8bc 100644
--- a/src/port/sprompt.c
+++ b/src/port/sprompt.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/sprompt.c,v 1.22 2010/01/02 16:58:13 momjian Exp $
+ * src/port/sprompt.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/srandom.c b/src/port/srandom.c
index f93c9e722b..94813dac94 100644
--- a/src/port/srandom.c
+++ b/src/port/srandom.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/srandom.c,v 1.11 2010/01/02 16:58:13 momjian Exp $
+ * src/port/srandom.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/strdup.c b/src/port/strdup.c
index db0ef59baf..d86f052a54 100644
--- a/src/port/strdup.c
+++ b/src/port/strdup.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/strdup.c,v 1.16 2010/01/02 16:58:13 momjian Exp $
+ * src/port/strdup.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/strerror.c b/src/port/strerror.c
index eebeb1b858..e92ebc9f55 100644
--- a/src/port/strerror.c
+++ b/src/port/strerror.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/port/strerror.c,v 1.5 2005/07/28 04:03:14 tgl Exp $ */
+/* src/port/strerror.c */
/*
* strerror - map error number to descriptive string
diff --git a/src/port/strlcat.c b/src/port/strlcat.c
index cab2e9adf7..33ee22520d 100644
--- a/src/port/strlcat.c
+++ b/src/port/strlcat.c
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/src/port/strlcat.c,v 1.4 2009/06/11 14:49:15 momjian Exp $
+ * src/port/strlcat.c
*
* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
diff --git a/src/port/strlcpy.c b/src/port/strlcpy.c
index 1f4e7dd7d6..8f751eb88b 100644
--- a/src/port/strlcpy.c
+++ b/src/port/strlcpy.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/strlcpy.c,v 1.7 2010/01/02 16:58:13 momjian Exp $
+ * src/port/strlcpy.c
*
* 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 d02c99b460..8513858634 100644
--- a/src/port/strtol.c
+++ b/src/port/strtol.c
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/src/port/strtol.c,v 1.18 2010/01/02 16:58:13 momjian Exp $
+ * src/port/strtol.c
*
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
diff --git a/src/port/strtoul.c b/src/port/strtoul.c
index 18f04ac179..c9ec156ad1 100644
--- a/src/port/strtoul.c
+++ b/src/port/strtoul.c
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/src/port/strtoul.c,v 1.5 2009/06/11 14:49:15 momjian Exp $
+ * src/port/strtoul.c
*
*
* Copyright (c) 1990, 1993
diff --git a/src/port/thread.c b/src/port/thread.c
index 3d4d248add..2d54d228ba 100644
--- a/src/port/thread.c
+++ b/src/port/thread.c
@@ -7,7 +7,7 @@
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/port/thread.c,v 1.42 2010/01/02 16:58:13 momjian Exp $
+ * src/port/thread.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/unsetenv.c b/src/port/unsetenv.c
index 2110123694..11100330ff 100644
--- a/src/port/unsetenv.c
+++ b/src/port/unsetenv.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/unsetenv.c,v 1.12 2010/09/07 14:10:30 momjian Exp $
+ * src/port/unsetenv.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/win32env.c b/src/port/win32env.c
index 2ab5d79112..8e9b948c52 100644
--- a/src/port/win32env.c
+++ b/src/port/win32env.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/win32env.c,v 1.8 2010/02/26 02:01:38 momjian Exp $
+ * src/port/win32env.c
*
*-------------------------------------------------------------------------
*/
diff --git a/src/port/win32error.c b/src/port/win32error.c
index f3e4f9227d..4ab3de3fa4 100644
--- a/src/port/win32error.c
+++ b/src/port/win32error.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/win32error.c,v 1.7 2010/01/02 16:58:13 momjian Exp $
+ * src/port/win32error.c
*
*-------------------------------------------------------------------------
*/