aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-01-14 22:52:57 +0000
committerBruce Momjian <bruce@momjian.us>2003-01-14 22:52:57 +0000
commit1eddbd81fac14b3e951251b2b084a9ac3aa24133 (patch)
tree70c1e240c76f6cba32e01968551e2556065f7cef
parent97f0d0c86f9db706d230704f4baa1a1e431df344 (diff)
downloadpostgresql-1eddbd81fac14b3e951251b2b084a9ac3aa24133.tar.gz
postgresql-1eddbd81fac14b3e951251b2b084a9ac3aa24133.zip
Readd #include netinet/in.h for FreeBSD.
-rw-r--r--src/backend/libpq/pqcomm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c
index af5b4af3e4c..7ad3dea2a8a 100644
--- a/src/backend/libpq/pqcomm.c
+++ b/src/backend/libpq/pqcomm.c
@@ -29,7 +29,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pqcomm.c,v 1.145 2003/01/06 09:58:23 petere Exp $
+ * $Id: pqcomm.c,v 1.146 2003/01/14 22:52:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -69,6 +69,7 @@
#include <sys/stat.h>
#include <sys/socket.h>
#include <netdb.h>
+#include <netinet/in.h>
#ifdef HAVE_NETINET_TCP_H
#include <netinet/tcp.h>
#endif