mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 20:29:59 -04:00
add the undocumented -S (simple output format) option
This commit is contained in:
parent
78f0b08d54
commit
47b4920f08
1 changed files with 8 additions and 2 deletions
|
|
@ -17,7 +17,7 @@
|
|||
* 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>
|
||||
|
||||
|
|
@ -1516,7 +1516,7 @@ main(int argc, char *argv[]) {
|
|||
dns_result_register();
|
||||
|
||||
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) {
|
||||
switch (ch) {
|
||||
case 'c':
|
||||
|
|
@ -1581,6 +1581,12 @@ main(int argc, char *argv[]) {
|
|||
fatal("number of cpus must be numeric");
|
||||
break;
|
||||
|
||||
case 'S':
|
||||
/* This is intentionally undocumented */
|
||||
/* -S: simple output style */
|
||||
masterstyle = &dns_master_style_simple;
|
||||
break;
|
||||
|
||||
case 'h':
|
||||
default:
|
||||
usage();
|
||||
|
|
|
|||
Loading…
Reference in a new issue