aboutsummaryrefslogtreecommitdiff
path: root/src/backend/libpq/pqcomm.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-01-06 09:58:36 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-01-06 09:58:36 +0000
commit6e90803f901b18750c9bbed5f0321fd9e82a88ff (patch)
tree12c619e7a1d2568470c29f48f87033eef6a0d3b0 /src/backend/libpq/pqcomm.c
parent6b39507498c259bf76a64c3a9100f89cfe30732f (diff)
downloadpostgresql-6e90803f901b18750c9bbed5f0321fd9e82a88ff.tar.gz
postgresql-6e90803f901b18750c9bbed5f0321fd9e82a88ff.zip
Fix for systems that don't have INET_ADDRSTRLEN.
Diffstat (limited to 'src/backend/libpq/pqcomm.c')
-rw-r--r--src/backend/libpq/pqcomm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c
index 904afb3b8fd..af5b4af3e4c 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.144 2003/01/06 03:18:26 momjian Exp $
+ * $Id: pqcomm.c,v 1.145 2003/01/06 09:58:23 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -69,7 +69,6 @@
#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