From 2d12f4da544e5007a4dc336b25fa9f005f0c6dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Nov 2013 17:28:58 +0100 Subject: [PATCH] Do not hide legal disclaimer with whois -V MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was missing break in the 'V' option case. Signed-off-by: Petr Písař --- whois.c | 1 + 1 file changed, 1 insertion(+) diff --git a/whois.c b/whois.c index cde55df..7be6a13 100644 --- a/whois.c +++ b/whois.c @@ -133,6 +133,7 @@ int main(int argc, char *argv[]) break; case 'V': client_tag = optarg; + break; case 'H': hide_discl = HIDE_NOT_STARTED; /* enable disclaimers hiding */ break;