From each@isc.org Tue Mar 21 23:50:05 2017 MIME-Version: 1.0 In-Reply-To: Content-Disposition: inline X-RT-Interface: API References: <8a847b71-13e6-5ec8-b988-dcc1afe5f153@redhat.com> Message-ID: <20170321235005.GA29801@isc.org> content-type: text/plain; charset="utf-8" X-RT-Original-Encoding: utf-8 Received: from bikeshed.isc.org (bikeshed.isc.org [IPv6:2001:4f8:3:d::19]) by bugs.isc.org (Postfix) with ESMTP id 6ED2671B5A8 for ; Tue, 21 Mar 2017 23:50:05 +0000 (UTC) Received: by bikeshed.isc.org (Postfix, from userid 10292) id 63267216C1C; Tue, 21 Mar 2017 23:50:05 +0000 (UTC) Delivered-To: bind9-bugs@bugs.isc.org User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [ISC-Bugs #44925] [PATCH] nsupdate help typo Return-Path: X-Original-To: bind9-bugs@bugs.isc.org Date: Tue, 21 Mar 2017 23:50:05 +0000 To: "Petr Menšík via RT" From: "Evan Hunt" RT-Message-ID: Content-Length: 1310 Hi Petr, Thanks for catching this. We'll correct it in the next round of maintenance releases (we're already at release candidate status for this round). IMHO the current text is a little unclear, so while we're chaing it I suggest we change it to this: diff --git a/bin/nsupdate/nsupdate.c b/bin/nsupdate/nsupdate.c index 9572fd8..f1cc1b8 100644 --- a/bin/nsupdate/nsupdate.c +++ b/bin/nsupdate/nsupdate.c @@ -2146,10 +2146,10 @@ do_next_command(char *cmdline) { "zone name (set the zone to be updated)\n" "class CLASS (set the zone's DNS class, e.g. IN (default), CH)\n" "check-names { on | off } (enable / disable check-names)\n" -"[prereq] nxdomain name (does this name not exist)\n" -"[prereq] yxdomain name (does this name exist)\n" -"[prereq] nxrrset .... (does this RRset exist)\n" -"[prereq] yxrrset .... (does this RRset not exist)\n" +"[prereq] nxdomain name (require that this name does not exist)\n" +"[prereq] yxdomain name (require that this name exists)\n" +"[prereq] nxrrset .... (require that this RRset does not exist)\n" +"[prereq] yxrrset .... (require that this RRset exists)\n" "[update] add .... (add the given record to the zone)\n" "[update] del[ete] .... (remove the given record(s) from the zone)\n");