From 35943ea8fc28773734246d002419ebfaf37af5e2 Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Sun, 14 Jun 1998 16:54:23 +0000 Subject: [PATCH] Committing changes I made in 'src/daemon'. --- sysdeps/common/gnuslib.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sysdeps/common/gnuslib.c b/sysdeps/common/gnuslib.c index 29a9971c..f4ef268a 100644 --- a/sysdeps/common/gnuslib.c +++ b/sysdeps/common/gnuslib.c @@ -196,7 +196,7 @@ void disconnect_from_ipc_server(s,msgp,echo) */ void send_string(s,msg) int s; - CONST char *msg; + const char *msg; { #if 0 if (send(s,msg,strlen(msg),0) < 0) { @@ -290,13 +290,15 @@ int internet_addr(host) struct hostent *hp; /* pointer to host info for remote host */ IN_ADDR numeric_addr; /* host address */ - numeric_addr = inet_addr(host); + numeric_addr = inet_addr (host); if (!NUMERIC_ADDR_ERROR) return numeric_addr; - else if ((hp = gethostbyname(host)) != NULL) + else if ((hp = gethostbyname (host)) != NULL) return ((struct in_addr *)(hp->h_addr))->s_addr; - else + else { + glibtop_warn_io ("gethostbyname (%s)", host); return -1; + } } /* internet_addr */