From 524fcb9e01b6aa48334bfd6470045a0f3591cae9 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Mon, 1 Oct 2001 17:50:25 +0000 Subject: Use xgethostbyname instead of gethostbyname (found by Erik Andersen). --- networking/nslookup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking/nslookup.c') diff --git a/networking/nslookup.c b/networking/nslookup.c index 9b7cb645c..3e32ca9c0 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c @@ -174,10 +174,10 @@ int nslookup_main(int argc, char **argv) if (is_ip_address(argv[1])) { host = gethostbyaddr_wrapper(argv[1]); } else { - host = gethostbyname(argv[1]); + host = xgethostbyname(argv[1]); } hostent_fprint(host); return EXIT_SUCCESS; } -/* $Id: nslookup.c,v 1.24 2001/07/06 17:51:29 andersen Exp $ */ +/* $Id: nslookup.c,v 1.25 2001/10/01 17:50:25 kraai Exp $ */ -- cgit v1.2.3