mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
1892. [bug] dnssec-signzone, dnssec-keygen: handle negative debug
levels. [RT #14962]
This commit is contained in:
parent
311f11f82a
commit
7c386b0c31
3 changed files with 7 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1892. [bug] dnssec-signzone, dnssec-keygen: handle negative debug
|
||||
levels. [RT #14962]
|
||||
|
||||
1891. [func] Limit the number of recursive clients that can be
|
||||
waiting for a single query (<qname,qtype,qclass>) to
|
||||
resolve. New options clients-per-query and
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssectool.c,v 1.42 2005/04/29 00:22:25 marka Exp $ */
|
||||
/* $Id: dnssectool.c,v 1.43 2005/07/01 03:28:42 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -151,6 +151,8 @@ setup_logging(int verbose, isc_mem_t *mctx, isc_log_t **logp) {
|
|||
isc_log_t *log = NULL;
|
||||
int level;
|
||||
|
||||
if (verbose < 0)
|
||||
verbose = 0;
|
||||
switch (verbose) {
|
||||
case 0:
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ rt14933 new
|
|||
rt14951 new
|
||||
rt14953 new
|
||||
rt14959 new
|
||||
rt14962 new
|
||||
rt14962 closed
|
||||
rt14963 new
|
||||
rt14965 new
|
||||
rt14967 new
|
||||
|
|
|
|||
Loading…
Reference in a new issue