diff options
-rw-r--r-- | networking/nslookup.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index bb691d687..936fa33cb 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -197,7 +197,10 @@ int nslookup_main(int argc, char **argv) | |||
197 | host = xgethostbyname(argv[1]); | 197 | host = xgethostbyname(argv[1]); |
198 | } | 198 | } |
199 | hostent_fprint(host, "Name: "); | 199 | hostent_fprint(host, "Name: "); |
200 | return EXIT_SUCCESS; | 200 | if (host) { |
201 | return EXIT_SUCCESS; | ||
202 | } | ||
203 | return EXIT_FAILURE; | ||
201 | } | 204 | } |
202 | 205 | ||
203 | /* $Id: nslookup.c,v 1.32 2004/03/15 08:28:48 andersen Exp $ */ | 206 | /* $Id: nslookup.c,v 1.33 2004/10/13 07:25:01 andersen Exp $ */ |