aboutsummaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 15:40:51 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-16 15:40:51 +0000
commit7ee6d7639da2e6f8ec5c282f2dab4e66fa359743 (patch)
tree03c1fca61c1b577b7c527d2b8482c5b7f6972bcd /sysklogd
parentbbb602f480533eb3bdc18187065b3b5616482f4a (diff)
downloadbusybox-w32-7ee6d7639da2e6f8ec5c282f2dab4e66fa359743.tar.gz
busybox-w32-7ee6d7639da2e6f8ec5c282f2dab4e66fa359743.tar.bz2
busybox-w32-7ee6d7639da2e6f8ec5c282f2dab4e66fa359743.zip
Add xgethostbyname and herror_msg* functions.
git-svn-id: svn://busybox.net/trunk/busybox@2654 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 9c7375852..6be51d7dc 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -450,11 +450,7 @@ static void init_RemoteLog (void){
450 error_msg_and_die("syslogd: cannot create socket"); 450 error_msg_and_die("syslogd: cannot create socket");
451 } 451 }
452 452
453 hostinfo = (struct hostent *) gethostbyname(RemoteHost); 453 hostinfo = xgethostbyname(RemoteHost);
454
455 if (!hostinfo) {
456 error_msg_and_die("syslogd: cannot resolve remote host name [%s]", RemoteHost);
457 }
458 454
459 remoteaddr.sin_family = AF_INET; 455 remoteaddr.sin_family = AF_INET;
460 remoteaddr.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list; 456 remoteaddr.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;