2
0
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:
Mark Andrews
2016-01-26 00:09:03 +11:00
parent 1fe6b74b9c
commit f8432e3f24
2 changed files with 6 additions and 4 deletions

View File

@@ -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.

View File

@@ -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;
}