repo: resdb
action: commit
revision: 
path_from: 
revision_from: efe5787b95d471755055b5fa0cbef1b843e0dc83:
path_to: 
revision_to: 
git.thebackupbox.net
resdb
git clone git://git.thebackupbox.net/resdb
commit efe5787b95d471755055b5fa0cbef1b843e0dc83
Author: epoch 
Date:   Sun Feb 19 13:07:13 2017 +0000

    made a couple error messages more informative

diff --git a/contrib/whoisd/whoisd.pl b/contrib/whoisd/whoisd.pl
index 60ce11fd14cb5b52bc09e39983826463d57f5834..
index ..3ef38e0f869f1a73b96324ec1b666269f1872ca7 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();

-----END OF PAGE-----