diff options
author | Matt Kraai | 2001-05-16 15:40:51 +0000 |
---|---|---|
committer | Matt Kraai | 2001-05-16 15:40:51 +0000 |
commit | c55b8d41c15640fa1637f919b3f6eca6e781047a (patch) | |
tree | 03c1fca61c1b577b7c527d2b8482c5b7f6972bcd /util-linux/rdate.c | |
parent | 59df6f73988b103f0dcfffeaec10642527336c5e (diff) | |
download | busybox-c55b8d41c15640fa1637f919b3f6eca6e781047a.zip busybox-c55b8d41c15640fa1637f919b3f6eca6e781047a.tar.gz |
Add xgethostbyname and herror_msg* functions.
Diffstat (limited to 'util-linux/rdate.c')
-rw-r--r-- | util-linux/rdate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index ead1e7c..8deb35d 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c @@ -45,8 +45,7 @@ static time_t askremotedate(const char *host) unsigned long int nett, localt; int fd; - if (!(h = gethostbyname(host))) /* get the IP addr */ - perror_msg_and_die("%s", host); + h = xgethostbyname(host); /* get the IP addr */ if ((tserv = getservbyname("time", "tcp")) == NULL) /* find port # */ perror_msg_and_die("%s", "time"); |