mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 06:55:30 +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
|
4300. [bug] A flag could be set in the wrong field when setting
|
||||||
up nonrecursive queries; this could cause the
|
up nonrecursive queries; this could cause the
|
||||||
SERVFAIL cache to cache responses it shouldn't.
|
SERVFAIL cache to cache responses it shouldn't.
|
||||||
|
@@ -218,8 +218,8 @@ main(int argc, char **argv) {
|
|||||||
printcreate = ISC_TRUE;
|
printcreate = ISC_TRUE;
|
||||||
break;
|
break;
|
||||||
case 'P':
|
case 'P':
|
||||||
if (!strncmp(p, "sync", 3)) {
|
if (!strncmp(p, "sync", 4)) {
|
||||||
p += 3;
|
p += 4;
|
||||||
printsyncadd = ISC_TRUE;
|
printsyncadd = ISC_TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -235,8 +235,8 @@ main(int argc, char **argv) {
|
|||||||
printinact = ISC_TRUE;
|
printinact = ISC_TRUE;
|
||||||
break;
|
break;
|
||||||
case 'D':
|
case 'D':
|
||||||
if (!strncmp(p, "sync", 3)) {
|
if (!strncmp(p, "sync", 4)) {
|
||||||
p += 3;
|
p += 4;
|
||||||
printsyncdel = ISC_TRUE;
|
printsyncdel = ISC_TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user