diff options
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; |