+3502. [func] zone-statistics: "no" is now a synonym for "none",
+ instead of "terse". [RT #29165]
+
3501. [func] zone-statistics now takes three options: full,
terse, and none. "yes" and "no" are retained as
synonyms for full and terse, respectively. [RT #29165]
if (cfg_obj_asboolean(obj))
statlevel = dns_zonestat_full;
else
- statlevel = dns_zonestat_terse; /* XXX */
+ statlevel = dns_zonestat_none;
} else {
const char *levelstr = cfg_obj_asstring(obj);
if (strcasecmp(levelstr, "full") == 0)
if (cfg_obj_asboolean(obj))
statlevel = dns_zonestat_full;
else
- statlevel = dns_zonestat_terse; /* XXX */
+ statlevel = dns_zonestat_none;
} else {
const char *levelstr = cfg_obj_asstring(obj);
if (strcasecmp(levelstr, "full") == 0)
For backward compatibility with earlier versions
of BIND 9, the <command>zone-statistics</command>
option can also accept <userinput>yes</userinput>
- or <userinput>no</userinput>, which have the same
- effect as <userinput>full</userinput> and
- <userinput>terse</userinput>, respectively.
+ or <userinput>no</userinput>; <userinput>yes</userinput>
+ has the same meaning as <userinput>full</userinput>.
+ As of <acronym>BIND</acronym> 9.10,
+ <userinput>no</userinput> has the same meaning
+ as <userinput>none</userinput>; previously, it
+ was the same as <userinput>terse</userinput>.
</para>
</listitem>
</varlistentry>