diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-07-15 23:04:24 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-07-15 23:04:24 +0000 |
| commit | a9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch) | |
| tree | 297fe17b4ac326fa1078134f10099c074e4052e0 /src/backend/libpq | |
| parent | 2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff) | |
| download | postgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.tar.gz | |
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/backend/libpq')
| -rw-r--r-- | src/backend/libpq/auth.c | 20 | ||||
| -rw-r--r-- | src/backend/libpq/be-dumpdata.c | 14 | ||||
| -rw-r--r-- | src/backend/libpq/be-fsstubs.c | 10 | ||||
| -rw-r--r-- | src/backend/libpq/be-pqexec.c | 12 | ||||
| -rw-r--r-- | src/backend/libpq/hba.c | 8 | ||||
| -rw-r--r-- | src/backend/libpq/password.c | 10 | ||||
| -rw-r--r-- | src/backend/libpq/portal.c | 4 | ||||
| -rw-r--r-- | src/backend/libpq/portalbuf.c | 4 | ||||
| -rw-r--r-- | src/backend/libpq/pqpacket.c | 6 | ||||
| -rw-r--r-- | src/backend/libpq/pqsignal.c | 6 | ||||
| -rw-r--r-- | src/backend/libpq/util.c | 4 |
11 files changed, 49 insertions, 49 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 565060905a..72ccd86657 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.37 1999/05/26 12:55:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.38 1999/07/15 23:03:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -30,14 +30,14 @@ #include <netinet/in.h> #include <arpa/inet.h> -#include <postgres.h> -#include <miscadmin.h> +#include "postgres.h" +#include "miscadmin.h" -#include <libpq/auth.h> -#include <libpq/libpq.h> -#include <libpq/hba.h> -#include <libpq/password.h> -#include <libpq/crypt.h> +#include "libpq/auth.h" +#include "libpq/libpq.h" +#include "libpq/hba.h" +#include "libpq/password.h" +#include "libpq/crypt.h" static void sendAuthRequest(Port *port, AuthRequest areq, PacketDoneProc handler); @@ -62,7 +62,7 @@ static void auth_failed(Port *port); *---------------------------------------------------------------- */ -#include <krb.h> +#include "krb.h" /* * pg_krb4_recvauth -- server routine to receive authentication information @@ -149,7 +149,7 @@ pg_krb4_recvauth(Port *port) *---------------------------------------------------------------- */ -#include <krb5/krb5.h> +#include "krb5/krb5.h" /* * pg_an_to_ln -- return the local name corresponding to an authentication diff --git a/src/backend/libpq/be-dumpdata.c b/src/backend/libpq/be-dumpdata.c index 326948faf0..5a0599bc12 100644 --- a/src/backend/libpq/be-dumpdata.c +++ b/src/backend/libpq/be-dumpdata.c @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: be-dumpdata.c,v 1.27 1999/07/15 22:39:13 momjian Exp $ + * $Id: be-dumpdata.c,v 1.28 1999/07/15 23:03:13 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -29,13 +29,13 @@ */ #include <string.h> -#include <postgres.h> +#include "postgres.h" -#include <lib/dllist.h> -#include <libpq/libpq.h> -#include <access/heapam.h> -#include <catalog/catalog.h> -#include <access/printtup.h> +#include "lib/dllist.h" +#include "libpq/libpq.h" +#include "access/heapam.h" +#include "catalog/catalog.h" +#include "access/printtup.h" /* ---------------- * backend portal stack for recursive PQexec calls diff --git a/src/backend/libpq/be-fsstubs.c b/src/backend/libpq/be-fsstubs.c index 25e87aae64..eecb133137 100644 --- a/src/backend/libpq/be-fsstubs.c +++ b/src/backend/libpq/be-fsstubs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.37 1999/07/15 22:39:13 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.38 1999/07/15 23:03:13 momjian Exp $ * * NOTES * This should be moved to a more appropriate place. It is here @@ -35,12 +35,12 @@ #include <unistd.h> #include <string.h> -#include <postgres.h> +#include "postgres.h" -#include <libpq/libpq-fs.h> +#include "libpq/libpq-fs.h" #include <catalog/pg_shadow.h> /* for superuser() */ -#include <storage/large_object.h> -#include <libpq/be-fsstubs.h> +#include "storage/large_object.h" +#include "libpq/be-fsstubs.h" /* [PA] is Pascal André <andre@via.ecp.fr> */ diff --git a/src/backend/libpq/be-pqexec.c b/src/backend/libpq/be-pqexec.c index ea48d6ff62..6703b955bc 100644 --- a/src/backend/libpq/be-pqexec.c +++ b/src/backend/libpq/be-pqexec.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.21 1999/07/15 22:39:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.22 1999/07/15 23:03:13 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,12 +20,12 @@ * NOTES * These routines are compiled into the postgres backend. */ -#include <postgres.h> +#include "postgres.h" -#include <tcop/fastpath.h> -#include <tcop/tcopprot.h> -#include <libpq/libpq.h> -#include <utils/builtins.h> +#include "tcop/fastpath.h" +#include "tcop/tcopprot.h" +#include "libpq/libpq.h" +#include "utils/builtins.h" #ifndef HAVE_MEMMOVE #else #include <string.h> diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index b6fa91e626..1067253b73 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -5,7 +5,7 @@ * wherein you authenticate a user by seeing what IP address the system * says he comes from and possibly using ident). * - * $Id: hba.c,v 1.44 1999/07/15 22:39:14 momjian Exp $ + * $Id: hba.c,v 1.45 1999/07/15 23:03:13 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,9 +20,9 @@ #include <arpa/inet.h> #include <unistd.h> -#include <postgres.h> -#include <miscadmin.h> -#include <libpq/libpq.h> +#include "postgres.h" +#include "miscadmin.h" +#include "libpq/libpq.h" /* Some standard C libraries, including GNU, have an isblank() function. Others, including Solaris, do not. So we have our own. diff --git a/src/backend/libpq/password.c b/src/backend/libpq/password.c index 1dd9382998..aee994ce18 100644 --- a/src/backend/libpq/password.c +++ b/src/backend/libpq/password.c @@ -1,14 +1,14 @@ /* * Copyright (c) 1994, Regents of the University of California * - * $Id: password.c,v 1.22 1999/07/15 22:39:14 momjian Exp $ + * $Id: password.c,v 1.23 1999/07/15 23:03:14 momjian Exp $ * */ -#include <postgres.h> -#include <miscadmin.h> -#include <libpq/password.h> -#include <libpq/libpq.h> +#include "postgres.h" +#include "miscadmin.h" +#include "libpq/password.h" +#include "libpq/libpq.h" #include <string.h> #include <unistd.h> #ifdef HAVE_CRYPT_H diff --git a/src/backend/libpq/portal.c b/src/backend/libpq/portal.c index 7a7f1dbfc9..9680909c30 100644 --- a/src/backend/libpq/portal.c +++ b/src/backend/libpq/portal.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: portal.c,v 1.23 1999/07/15 22:39:14 momjian Exp $ + * $Id: portal.c,v 1.24 1999/07/15 23:03:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ #include <stdio.h> #include <string.h> -#include <postgres.h> +#include "postgres.h" #include <libpq/libpq.h> /* where the declarations go */ diff --git a/src/backend/libpq/portalbuf.c b/src/backend/libpq/portalbuf.c index 81e1fea503..c2b84ab2fa 100644 --- a/src/backend/libpq/portalbuf.c +++ b/src/backend/libpq/portalbuf.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.17 1999/07/15 22:39:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.18 1999/07/15 23:03:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -50,7 +50,7 @@ #include <string.h> #include <sys/types.h> -#include <postgres.h> +#include "postgres.h" #include <libpq/libpq.h> /* where the declarations go */ diff --git a/src/backend/libpq/pqpacket.c b/src/backend/libpq/pqpacket.c index ec516026bf..febfb37436 100644 --- a/src/backend/libpq/pqpacket.c +++ b/src/backend/libpq/pqpacket.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.20 1999/07/15 22:39:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/pqpacket.c,v 1.21 1999/07/15 23:03:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -23,8 +23,8 @@ #include <fcntl.h> #include <errno.h> -#include <postgres.h> -#include <libpq/libpq.h> +#include "postgres.h" +#include "libpq/libpq.h" /* diff --git a/src/backend/libpq/pqsignal.c b/src/backend/libpq/pqsignal.c index cdc8ccac9d..0e667656cc 100644 --- a/src/backend/libpq/pqsignal.c +++ b/src/backend/libpq/pqsignal.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.11 1999/02/13 23:15:48 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.12 1999/07/15 23:03:14 momjian Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other @@ -37,11 +37,11 @@ * is to do signal-handler reinstallation, which doesn't work well * at all. * ------------------------------------------------------------------------*/ -#include <postgres.h> +#include "postgres.h" #include <signal.h> -#include <libpq/pqsignal.h> +#include "libpq/pqsignal.h" pqsigfunc pqsignal(int signo, pqsigfunc func) diff --git a/src/backend/libpq/util.c b/src/backend/libpq/util.c index 9c46209f43..72c475d375 100644 --- a/src/backend/libpq/util.c +++ b/src/backend/libpq/util.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: util.c,v 1.10 1999/07/15 22:39:15 momjian Exp $ + * $Id: util.c,v 1.11 1999/07/15 23:03:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ #include <stdio.h> #include <string.h> -#include <postgres.h> +#include "postgres.h" #include <libpq/libpq.h> /* where the declarations go */ |
