diff options
Diffstat (limited to 'nslookup.c')
-rw-r--r-- | nslookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nslookup.c b/nslookup.c index 9b7cb645c..3e32ca9c0 100644 --- a/nslookup.c +++ b/nslookup.c | |||
@@ -174,10 +174,10 @@ int nslookup_main(int argc, char **argv) | |||
174 | if (is_ip_address(argv[1])) { | 174 | if (is_ip_address(argv[1])) { |
175 | host = gethostbyaddr_wrapper(argv[1]); | 175 | host = gethostbyaddr_wrapper(argv[1]); |
176 | } else { | 176 | } else { |
177 | host = gethostbyname(argv[1]); | 177 | host = xgethostbyname(argv[1]); |
178 | } | 178 | } |
179 | hostent_fprint(host); | 179 | hostent_fprint(host); |
180 | return EXIT_SUCCESS; | 180 | return EXIT_SUCCESS; |
181 | } | 181 | } |
182 | 182 | ||
183 | /* $Id: nslookup.c,v 1.24 2001/07/06 17:51:29 andersen Exp $ */ | 183 | /* $Id: nslookup.c,v 1.25 2001/10/01 17:50:25 kraai Exp $ */ |