diff options
author | asmodai <asmodai@FreeBSD.org> | 2001-08-09 06:05:46 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2001-08-09 06:05:46 +0000 |
commit | f973fbeb261313db1b0903d0e5b5e3b59807f7a1 (patch) | |
tree | 40b0527dab0dc21db0dc1928ff5f87e275c0b0fb /contrib | |
parent | da21fb8f94afdcd0b72e9a96ac10af6a47ba1ada (diff) | |
parent | b252fb87889ab3c43dd81af8dd28ab77c6f4a628 (diff) | |
download | FreeBSD-src-f973fbeb261313db1b0903d0e5b5e3b59807f7a1.zip FreeBSD-src-f973fbeb261313db1b0903d0e5b5e3b59807f7a1.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r81340,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/bind/lib/dst/support.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/bind/lib/dst/support.c b/contrib/bind/lib/dst/support.c index d191eb4..2dd2a8c 100644 --- a/contrib/bind/lib/dst/support.c +++ b/contrib/bind/lib/dst/support.c @@ -1,4 +1,4 @@ -static const char rcsid[] = "$Header: /proj/cvs/isc/bind8/src/lib/dst/support.c,v 1.9 2001/04/05 22:00:06 bwelling Exp $"; +static const char rcsid[] = "$Header: /proj/cvs/isc/bind8/src/lib/dst/support.c,v 1.9.2.1 2001/06/06 21:45:17 marka Exp $"; /* @@ -243,6 +243,9 @@ dst_s_dns_key_id(const u_char *dns_key_rdata, const int rdata_len) if (dns_key_rdata[3] == KEY_RSA) /* Algorithm RSA */ return dst_s_get_int16((u_char *) &dns_key_rdata[rdata_len - 3]); + else if (dns_key_rdata[3] == KEY_HMAC_MD5) + /* compatibility */ + return 0; else /* compute a checksum on the key part of the key rr */ return dst_s_id_calc(dns_key_rdata, rdata_len); |