dnssec/zone-sign: fix a typo

This commit is contained in:
David Vašek 2026-01-19 19:34:06 +01:00 committed by Daniel Salzman
parent 8c264557ae
commit d4e935c4ce

View file

@ -921,7 +921,7 @@ bool knot_zone_sign_use_key(const zone_key_t *key, const knot_rrset_t *covered)
}
bool active_ksk = ((key->is_active || key->is_ksk_active_plus) && key->is_ksk);
bool active_zsk = ((key->is_active || key->is_zsk_active_plus) && key->is_zsk);;
bool active_zsk = ((key->is_active || key->is_zsk_active_plus) && key->is_zsk);
// this may be a problem with offline KSK
bool cds_sign_by_ksk = true;