# HG changeset patch # User Paul Reilly # Date 767748490 0 # Node ID c9598edda1a22074729e4b963d9f9559930af6ff # Parent 719504ee9111bae9ae9ef5da03f78f18659a4741 (IN_ADDR, NUMERIC_ADDR_ERROR): Made conditional on HAVE_BROKEN_INET_ADDR. diff -r 719504ee9111 -r c9598edda1a2 src/process.c --- a/src/process.c Sat Apr 30 23:08:15 1994 +0000 +++ b/src/process.c Sat Apr 30 23:28:10 1994 +0000 @@ -54,8 +54,8 @@ #include #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