From efe5787b95d471755055b5fa0cbef1b843e0dc83 Mon Sep 17 00:00:00 2001 From: epoch Date: Sun, 19 Feb 2017 13:07:13 +0000 Subject: made a couple error messages more informative --- contrib/whoisd/whoisd.pl | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'contrib/whoisd/whoisd.pl') diff --git a/contrib/whoisd/whoisd.pl b/contrib/whoisd/whoisd.pl index 60ce11f..3ef38e0 100755 --- a/contrib/whoisd/whoisd.pl +++ b/contrib/whoisd/whoisd.pl @@ -37,8 +37,8 @@ sub get_user_from_ASN { my $AS=$_[0]; my $user; chdir("$RESDB/db/as") || die "%% error"; - if(chdir($AS) || die "%% error") { - open(FILE,"owner") || die "%% ASN not found."; + if(chdir($AS) || die "%% ASN not found.") { + open(FILE,"owner") || die "%% ASN's owner not found."; $user=; close(FILE); } else { @@ -204,7 +204,6 @@ sub IPv6_lookup { } } -# default to assuming it is a name. sub user_lookup { printf "%% user section for '%s'\n", $QUERY unless $HACK; @@ -272,8 +271,8 @@ printf "%%%% found user: %s for the query.\n", $user; #k. we got user... now to find stuff belonging to that user. -#ASN_lookup($user); -#IPv4_lookup($user); -#domain_lookup($user); -#IPv6_lookup($user); -user_lookup(); +ASN_lookup($user); +IPv4_lookup($user); +domain_lookup($user); +IPv6_lookup($user); +#user_lookup(); -- cgit v1.2.3