Fix broken nsec3-hash integration test, and update ldns=nsec3-hash to also use 0 iterations by default (which makes it now inconsistent with main so this may be revisited later).

This commit is contained in:
Ximon Eighteen
2024-12-05 11:28:50 +01:00
parent 16a9f5aa98
commit 5fbfd6183c
2 changed files with 18 additions and 36 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ impl LdnsCommand for Nsec3Hash {
fn parse_ldns<I: IntoIterator<Item = OsString>>(args: I) -> Result<Args, Error> {
let mut algorithm = Nsec3HashAlg::SHA1;
let mut iterations = 1;
let mut iterations = 0;
let mut salt = Nsec3Salt::empty();
let mut name = None;