Report information
The Basics
Id:
37397
Status:
resolved
Priority:
Medium/Medium
Queue:

People
Owner:
Nobody in particular
Cc:
AdminCc:

BugTracker
Version Fixed:
9.9.7, 9.9.7-S1, 9.10.2, 9.11.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
(no value)
Severity:
S3 Low
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
(no value)
Area:
bug

Dates
Created:Mon, 06 Oct 2014 09:52:59 -0400
Updated:Thu, 03 Aug 2017 21:55:36 -0400
Closed:Tue, 21 Oct 2014 20:46:58 -0400



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

Subject: version cmdline option wrong in host
Date: Mon, 6 Oct 2014 09:52:51 -0400
To: bind9-bugs@isc.org
From: "Todd Eigenschink" <todd@xymmetrix.com>
The "version" option for host didn't match the usage output -- usage said -v, code implemented -V. Changed the code so 'host' matches 'dig'. --- bind-9.10.1.orig/bin/dig/host.c 2014-09-16 15:27:15.000000000 -0400 +++ bind-9.10.1/bin/dig/host.c 2014-10-06 09:49:12.000000000 -0400 @@ -639,11 +639,11 @@ case 'r': break; case 's': break; case 't': break; - case 'v': break; - case 'V': + case 'v': version(); exit(0); break; + case 'V': break; case 'w': break; case 'C': break; case 'D': -- Todd Eigenschink Xymmetrix, LLC todd@xymmetrix.com http://www.xymmetrix.com/ Non ex transverso sed deorsum 260-407-1584
Subject: Re: [ISC-Bugs #37397] version cmdline option wrong in host
Date: Tue, 07 Oct 2014 01:11:10 +1100
To: bind9-bugs@isc.org
From: Mark Andrews <marka@isc.org>
Thanks. Usage updated. -v is verbose. -V is version. Mark -- Mark Andrews, ISC 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: marka@isc.org
Subject: Re: [ISC-Bugs #37397] version cmdline option wrong in host
Date: Mon, 6 Oct 2014 10:16:44 -0400
To: bind9-bugs@isc.org
From: "Todd Eigenschink" <todd@xymmetrix.com>
Mark Andrews via RT writes: > >Thanks. Usage updated. > >-v is verbose. >-V is version. I'll be honest: I didn't even notice the "-v enables verbose output" in the help. :-) Consider make dig use -V for version, then, so they're consistent.
Subject: Re: [ISC-Bugs #37397] version cmdline option wrong in host
Date: Tue, 07 Oct 2014 01:29:34 +1100
To: bind9-notes@isc.org
From: Mark Andrews <marka@isc.org>
In message <rt-3.8.6-2430-1412605008-87.37397-4-0@isc.org>, "todd via RT" write s: > Mark Andrews via RT writes: > > > >Thanks. Usage updated. > > > >-v is verbose. > >-V is version. > > > I'll be honest: I didn't even notice the "-v enables verbose output" > in the help. :-) > > Consider make dig use -V for version, then, so they're consistent. There is too much history across all the different commands to have -v/-V consistancy. -- Mark Andrews, ISC 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: marka@isc.org
Subject: Re: [ISC-Bugs #37397] version cmdline option wrong in host
Date: Mon, 6 Oct 2014 10:33:05 -0400
To: bind9-notes@isc.org
From: "Todd Eigenschink" <todd@xymmetrix.com>
Mark Andrews via RT writes: >There is too much history across all the different commands to have >-v/-V consistancy. Fair enough. Thanks for fixing the real bug. :-)