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 /networking/hostname.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 'networking/hostname.c')
-rw-r--r-- | networking/hostname.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/networking/hostname.c b/networking/hostname.c index f4118ea36..75e4d2e57 100644 --- a/networking/hostname.c +++ b/networking/hostname.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: hostname.c,v 1.27 2001/05/16 14:21:09 kraai Exp $ | 3 | * $Id: hostname.c,v 1.28 2001/05/16 15:40:48 kraai Exp $ |
4 | * Mini hostname implementation for busybox | 4 | * Mini hostname implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -117,11 +117,7 @@ int hostname_main(int argc, char **argv) | |||
117 | s = strchr(buf, '.'); | 117 | s = strchr(buf, '.'); |
118 | puts(s ? s + 1 : ""); | 118 | puts(s ? s + 1 : ""); |
119 | } else if (opt_ip) { | 119 | } else if (opt_ip) { |
120 | h = gethostbyname(buf); | 120 | h = xgethostbyname(buf); |
121 | if (!h) { | ||
122 | printf("Host not found\n"); | ||
123 | exit(1); | ||
124 | } | ||
125 | puts(inet_ntoa(*(struct in_addr *) (h->h_addr))); | 121 | puts(inet_ntoa(*(struct in_addr *) (h->h_addr))); |
126 | } else { | 122 | } else { |
127 | puts(buf); | 123 | puts(buf); |