diff options
author | Matt Kraai <kraai@debian.org> | 2001-05-16 15:40:51 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-05-16 15:40:51 +0000 |
commit | c55b8d41c15640fa1637f919b3f6eca6e781047a (patch) | |
tree | 03c1fca61c1b577b7c527d2b8482c5b7f6972bcd /sysklogd/syslogd.c | |
parent | 59df6f73988b103f0dcfffeaec10642527336c5e (diff) | |
download | busybox-w32-c55b8d41c15640fa1637f919b3f6eca6e781047a.tar.gz busybox-w32-c55b8d41c15640fa1637f919b3f6eca6e781047a.tar.bz2 busybox-w32-c55b8d41c15640fa1637f919b3f6eca6e781047a.zip |
Add xgethostbyname and herror_msg* functions.
Diffstat (limited to 'sysklogd/syslogd.c')
-rw-r--r-- | sysklogd/syslogd.c | 6 |
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; |