Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
f8432e3f
Commit
f8432e3f
authored
Jan 26, 2016
by
Mark Andrews
Browse files
4301. [bug] dnssec-settime -p [DP]sync was not working. [RT #41534]
parent
1fe6b74b
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f8432e3f
4301. [bug] dnssec-settime -p [DP]sync was not working. [RT #41534]
4300. [bug] A flag could be set in the wrong field when setting
up nonrecursive queries; this could cause the
SERVFAIL cache to cache responses it shouldn't.
...
...
bin/dnssec/dnssec-settime.c
View file @
f8432e3f
...
...
@@ -218,8 +218,8 @@ main(int argc, char **argv) {
printcreate
=
ISC_TRUE
;
break
;
case
'P'
:
if
(
!
strncmp
(
p
,
"sync"
,
3
))
{
p
+=
3
;
if
(
!
strncmp
(
p
,
"sync"
,
4
))
{
p
+=
4
;
printsyncadd
=
ISC_TRUE
;
break
;
}
...
...
@@ -235,8 +235,8 @@ main(int argc, char **argv) {
printinact
=
ISC_TRUE
;
break
;
case
'D'
:
if
(
!
strncmp
(
p
,
"sync"
,
3
))
{
p
+=
3
;
if
(
!
strncmp
(
p
,
"sync"
,
4
))
{
p
+=
4
;
printsyncdel
=
ISC_TRUE
;
break
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment