summaryrefslogtreecommitdiff
path: root/src/include/libpq
diff options
context:
space:
mode:
authorBruce Momjian1999-07-15 23:04:24 +0000
committerBruce Momjian1999-07-15 23:04:24 +0000
commita9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch)
tree297fe17b4ac326fa1078134f10099c074e4052e0 /src/include/libpq
parent2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff)
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/include/libpq')
-rw-r--r--src/include/libpq/crypt.h2
-rw-r--r--src/include/libpq/pqcomm.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/libpq/crypt.h b/src/include/libpq/crypt.h
index d6023332be..7827b46408 100644
--- a/src/include/libpq/crypt.h
+++ b/src/include/libpq/crypt.h
@@ -9,7 +9,7 @@
#ifndef PG_CRYPT_H
#define PG_CRYPT_H
-#include <libpq/libpq-be.h>
+#include "libpq/libpq-be.h"
#define CRYPT_PWD_FILE "pg_pwd"
#define CRYPT_PWD_FILE_SEPCHAR "'\\t'"
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h
index 1b37c064a4..31a2db5422 100644
--- a/src/include/libpq/pqcomm.h
+++ b/src/include/libpq/pqcomm.h
@@ -8,7 +8,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pqcomm.h,v 1.36 1999/05/25 22:42:51 momjian Exp $
+ * $Id: pqcomm.h,v 1.37 1999/07/15 23:03:50 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <sys/types.h>
#ifdef WIN32
-#include <winsock.h>
+#include "winsock.h"
#else
#include <sys/socket.h>
#include <sys/un.h>