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 /nfsmount.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 'nfsmount.c')
-rw-r--r-- | nfsmount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nfsmount.c b/nfsmount.c index a62df3272..90cf9fb1b 100644 --- a/nfsmount.c +++ b/nfsmount.c | |||
@@ -335,7 +335,7 @@ int nfsmount(const char *spec, const char *node, int *flags, | |||
335 | #endif | 335 | #endif |
336 | { | 336 | { |
337 | if ((hp = gethostbyname(hostname)) == NULL) { | 337 | if ((hp = gethostbyname(hostname)) == NULL) { |
338 | error_msg("can't get address for %s", hostname); | 338 | herror_msg("%s", hostname); |
339 | goto fail; | 339 | goto fail; |
340 | } else { | 340 | } else { |
341 | if (hp->h_length > sizeof(struct in_addr)) { | 341 | if (hp->h_length > sizeof(struct in_addr)) { |
@@ -580,7 +580,7 @@ int nfsmount(const char *spec, const char *node, int *flags, | |||
580 | mount_server_addr.sin_addr.s_addr = inet_addr(hostname); | 580 | mount_server_addr.sin_addr.s_addr = inet_addr(hostname); |
581 | } else { | 581 | } else { |
582 | if ((hp = gethostbyname(mounthost)) == NULL) { | 582 | if ((hp = gethostbyname(mounthost)) == NULL) { |
583 | error_msg("can't get address for %s", hostname); | 583 | herror_msg("%s", mounthost); |
584 | goto fail; | 584 | goto fail; |
585 | } else { | 585 | } else { |
586 | if (hp->h_length > sizeof(struct in_addr)) { | 586 | if (hp->h_length > sizeof(struct in_addr)) { |