Skip to content
Snippets Groups Projects
Commit d716d2e7 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

dnssec: remove unused and duplicate DNSKEY_FLAGS_*

parent 5e5ab9d3
No related branches found
No related tags found
1 merge request!929KNOT_DNSKEY_FLAG_*: add missing flags
......@@ -33,11 +33,3 @@ struct dnssec_key {
gnutls_privkey_t private_key;
unsigned bits;
};
static const uint16_t DNSKEY_FLAGS_KSK = 257;
static const uint16_t DNSKEY_FLAGS_ZSK = 256;
static inline uint16_t dnskey_flags(bool is_ksk)
{
return is_ksk ? DNSKEY_FLAGS_KSK : DNSKEY_FLAGS_ZSK;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment