mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
4301. [bug] dnssec-settime -p [DP]sync was not working. [RT #41534]
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -1,3 +1,5 @@
|
||||
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.
|
||||
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user