From bf053e878c22045087ba5b31ddff524e1fd0c59f Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Thu, 20 Apr 2017 16:17:36 -0700 Subject: [PATCH] [v9_11] correct a mistake in nsupdate help (cherry picked from commit bdbdc69a75ea2baf8b42e6d22477963653ec970e) --- bin/nsupdate/nsupdate.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/nsupdate/nsupdate.c b/bin/nsupdate/nsupdate.c index 6e91e9a61e..9d71596ca4 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"); return (STATUS_MORE);