2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

add the undocumented -S (simple output format) option

This commit is contained in:
Brian Wellington 2001-11-15 00:51:23 +00:00
parent 78f0b08d54
commit 47b4920f08

View File

@ -17,7 +17,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: dnssec-signzone.c,v 1.152 2001/11/14 22:14:19 bwelling Exp $ */ /* $Id: dnssec-signzone.c,v 1.153 2001/11/15 00:51:23 bwelling Exp $ */
#include <config.h> #include <config.h>
@ -1516,7 +1516,7 @@ main(int argc, char *argv[]) {
dns_result_register(); dns_result_register();
while ((ch = isc_commandline_parse(argc, argv, while ((ch = isc_commandline_parse(argc, argv,
"c:s:e:i:v:o:f:ahpr:td:n:")) "c:s:e:i:v:o:f:ahpr:td:n:S"))
!= -1) { != -1) {
switch (ch) { switch (ch) {
case 'c': case 'c':
@ -1581,6 +1581,12 @@ main(int argc, char *argv[]) {
fatal("number of cpus must be numeric"); fatal("number of cpus must be numeric");
break; break;
case 'S':
/* This is intentionally undocumented */
/* -S: simple output style */
masterstyle = &dns_master_style_simple;
break;
case 'h': case 'h':
default: default:
usage(); usage();