aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-05-16 15:40:51 +0000
committerMatt Kraai <kraai@debian.org>2001-05-16 15:40:51 +0000
commitc55b8d41c15640fa1637f919b3f6eca6e781047a (patch)
tree03c1fca61c1b577b7c527d2b8482c5b7f6972bcd /util-linux
parent59df6f73988b103f0dcfffeaec10642527336c5e (diff)
downloadbusybox-c55b8d41c15640fa1637f919b3f6eca6e781047a.tar.gz
Add xgethostbyname and herror_msg* functions.
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/nfsmount.c4
-rw-r--r--util-linux/rdate.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/util-linux/nfsmount.c b/util-linux/nfsmount.c
index a62df3272..90cf9fb1b 100644
--- a/util-linux/nfsmount.c
+++ b/util-linux/nfsmount.c
@@ -335,7 +335,7 @@ int nfsmount(const char *spec, const char *node, int *flags,
#endif
{
if ((hp = gethostbyname(hostname)) == NULL) {
- error_msg("can't get address for %s", hostname);
+ herror_msg("%s", hostname);
goto fail;
} else {
if (hp->h_length > sizeof(struct in_addr)) {
@@ -580,7 +580,7 @@ int nfsmount(const char *spec, const char *node, int *flags,
mount_server_addr.sin_addr.s_addr = inet_addr(hostname);
} else {
if ((hp = gethostbyname(mounthost)) == NULL) {
- error_msg("can't get address for %s", hostname);
+ herror_msg("%s", mounthost);
goto fail;
} else {
if (hp->h_length > sizeof(struct in_addr)) {
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index ead1e7c7d..8deb35d14 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");