summaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Reilly <pmr@pajato.com>1994-04-30 23:28:10 +0000
committerPaul Reilly <pmr@pajato.com>1994-04-30 23:28:10 +0000
commitcf32fea0cd428d6e06370c313c3fc74304e40132 (patch)
tree518530377d049033bba5342205004ce7181456e2 /src/process.c
parente9778f0be7288b5471fb5ee51dbff166c47e6fcf (diff)
downloademacs-cf32fea0cd428d6e06370c313c3fc74304e40132.tar.gz
(IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index dfe8d2f0bcb..26c59b8ff86 100644
--- a/src/process.c
+++ b/src/process.c
@@ -54,8 +54,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <client.h>
#endif
-/* DGUX inet_addr returns a 'struct in_addr'. */
-#ifdef DGUX
+/* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
+#ifdef HAVE_BROKEN_INET_ADDR
#define IN_ADDR struct in_addr
#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
#else