+2078. [bug] dnssec-checkzone output style "default" was badly
+ named. It is now called "relative". [RT #16326]
+
+2077. [bug] 'dnssec-signzone -O raw' wasn't outputing the
+ complete signed zone. [RT #16326]
+
2076. [bug] Several files were missing #include <config.h>
causing build failures on OSF. [RT #16341]
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named-checkzone.c,v 1.43 2006/01/07 00:23:35 marka Exp $ */
+/* $Id: named-checkzone.c,v 1.44 2006/08/30 22:57:16 marka Exp $ */
/*! \file */
case 's':
if (ARGCMP("full"))
outputstyle = &dns_master_style_full;
- else if (ARGCMP("default")) {
+ else if (ARGCMP("relative")) {
outputstyle = &dns_master_style_default;
} else {
fprintf(stderr,
- PERFORMANCE OF THIS SOFTWARE.
-->
-<!-- $Id: named-checkzone.docbook,v 1.25 2006/01/07 00:23:35 marka Exp $ -->
+<!-- $Id: named-checkzone.docbook,v 1.26 2006/08/30 22:57:16 marka Exp $ -->
<refentry id="man.named-checkzone">
<refentryinfo>
<date>June 13, 2000</date>
<para>
Specify the style of the dumped zone file.
Possible styles are <command>"full"</command> (default)
- and <command>"default"</command>.
+ and <command>"relative"</command>.
The full format is most suitable for processing
automatically by a separate script.
- On the other hand, the default format is more
+ On the other hand, the relative format is more
human-readable and is thus suitable for editing by hand.
For <command>named-checkzone</command>
this does not cause any effects unless it dumps the zone
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: dnssec-signzone.c,v 1.198 2006/04/13 18:09:56 dhankins Exp $ */
+/* $Id: dnssec-signzone.c,v 1.199 2006/08/30 22:57:16 marka Exp $ */
/*! \file */
dns_rdataset_t set;
isc_result_t result, dresult;
+ if (outputformat != dns_masterformat_text)
+ return;
+
dns_rdataset_init(&set);
result = dns_db_allrdatasets(db, node, version, 0, &rdsiter);
check_result(result, "dns_db_allrdatasets");