aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Reilly1994-04-30 23:28:10 +0000
committerPaul Reilly1994-04-30 23:28:10 +0000
commitcf32fea0cd428d6e06370c313c3fc74304e40132 (patch)
tree518530377d049033bba5342205004ce7181456e2 /src/process.c
parente9778f0be7288b5471fb5ee51dbff166c47e6fcf (diff)
downloademacs-cf32fea0cd428d6e06370c313c3fc74304e40132.tar.gz
emacs-cf32fea0cd428d6e06370c313c3fc74304e40132.zip
(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. */
54#include <client.h> 54#include <client.h>
55#endif 55#endif
56 56
57/* DGUX inet_addr returns a 'struct in_addr'. */ 57/* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */
58#ifdef DGUX 58#ifdef HAVE_BROKEN_INET_ADDR
59#define IN_ADDR struct in_addr 59#define IN_ADDR struct in_addr
60#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) 60#define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1)
61#else 61#else