diff options
Diffstat (limited to 'src/backend/libpq')
-rw-r--r-- | src/backend/libpq/auth.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/be-fsstubs.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/password.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/pqcomm.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/pqformat.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/pqpacket.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/pqsignal.c | 4 | ||||
-rw-r--r-- | src/backend/libpq/util.c | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 1dd98b7935f..d91fa9a8220 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -3,12 +3,12 @@ * auth.c * Routines to handle network authentication * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.50 2000/12/03 20:45:33 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.51 2001/01/24 19:42:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/libpq/be-fsstubs.c b/src/backend/libpq/be-fsstubs.c index a379bd05e8d..1d5870e93f4 100644 --- a/src/backend/libpq/be-fsstubs.c +++ b/src/backend/libpq/be-fsstubs.c @@ -3,12 +3,12 @@ * be-fsstubs.c * support for filesystem operations on large objects * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.56 2000/10/24 03:14:08 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.57 2001/01/24 19:42:56 momjian Exp $ * * NOTES * This should be moved to a more appropriate place. It is here diff --git a/src/backend/libpq/password.c b/src/backend/libpq/password.c index 1f1834b6ec1..856c3028800 100644 --- a/src/backend/libpq/password.c +++ b/src/backend/libpq/password.c @@ -1,8 +1,8 @@ /* - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: password.c,v 1.34 2000/11/27 03:46:01 tgl Exp $ + * $Id: password.c,v 1.35 2001/01/24 19:42:56 momjian Exp $ * */ diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index 0d2548c96af..7a20d66f7e1 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -26,10 +26,10 @@ * the backend's "backend/libpq" is quite separate from "interfaces/libpq". * All that remains is similarities of names to trap the unwary... * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.c,v 1.115 2000/12/18 00:44:46 tgl Exp $ + * $Id: pqcomm.c,v 1.116 2001/01/24 19:42:56 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/libpq/pqformat.c b/src/backend/libpq/pqformat.c index 24bc0bda384..a9a9114490e 100644 --- a/src/backend/libpq/pqformat.c +++ b/src/backend/libpq/pqformat.c @@ -13,10 +13,10 @@ * Incoming messages are read directly off the wire, as it were, but there * are still data-conversion tasks to be performed. * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqformat.c,v 1.15 2000/07/12 22:58:59 petere Exp $ + * $Id: pqformat.c,v 1.16 2001/01/24 19:42:56 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/libpq/pqpacket.c b/src/backend/libpq/pqpacket.c index 8e51a97f225..5e99b148f8e 100644 --- a/src/backend/libpq/pqpacket.c +++ b/src/backend/libpq/pqpacket.c @@ -4,12 +4,12 @@ * routines for reading and writing data packets sent/received by * POSTGRES clients and servers * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.27 2000/10/03 03:11:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.28 2001/01/24 19:42:56 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/libpq/pqsignal.c b/src/backend/libpq/pqsignal.c index 82cdf13c388..0783811d4f7 100644 --- a/src/backend/libpq/pqsignal.c +++ b/src/backend/libpq/pqsignal.c @@ -4,12 +4,12 @@ * reliable BSD-style signal(2) routine stolen from RWW who stole it * from Stevens... * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.17 2000/06/29 02:17:42 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.18 2001/01/24 19:42:56 momjian Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other diff --git a/src/backend/libpq/util.c b/src/backend/libpq/util.c index 4d593b29431..a80dc8781fa 100644 --- a/src/backend/libpq/util.c +++ b/src/backend/libpq/util.c @@ -3,10 +3,10 @@ * util.c * general routines for backend libpq modules * - * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.16 2000/07/08 03:04:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/util.c,v 1.17 2001/01/24 19:42:56 momjian Exp $ * *------------------------------------------------------------------------- */ |