mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 06:39:59 -04:00
[v9_9] handle time units in dnssec-coverage -r
4174. [bug] "dnssec-coverage -r" didn't handle time unit suffixes correctly. [RT #38444]
This commit is contained in:
parent
b009c5c389
commit
1605488758
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4174. [bug] "dnssec-coverage -r" didn't handle time unit
|
||||
suffixes correctly. [RT #38444]
|
||||
|
||||
4173. [bug] dig +sigchase was not properly matching the trusted
|
||||
key. [RT #40188]
|
||||
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@ def vspace():
|
|||
if _firstline:
|
||||
_firstline = False
|
||||
else:
|
||||
print()
|
||||
print('')
|
||||
|
||||
############################################################################
|
||||
# vreset:
|
||||
|
|
@ -664,7 +664,7 @@ def parse_args():
|
|||
parser.add_argument('-d', dest='keyttl', type=str,
|
||||
help='the DNSKEY TTL', metavar='int')
|
||||
parser.add_argument('-r', dest='resign', default='1944000',
|
||||
type=int, help='the RRSIG refresh interval '
|
||||
type=str, help='the RRSIG refresh interval '
|
||||
'in seconds [default: 22.5 days]',
|
||||
metavar='int')
|
||||
parser.add_argument('-c', dest='compilezone',
|
||||
|
|
|
|||
Loading…
Reference in a new issue