diff --git a/doc/Changelog b/doc/Changelog index 8b86d72bd..24b9009ec 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,7 @@ 3 March 2008: Wouter - Create 0.10 svn tag. + - 0.11 version in trunk. + - indentation nicer. 29 February 2008: Wouter - documentation update. diff --git a/util/data/packed_rrset.c b/util/data/packed_rrset.c index df01330e5..19b77a461 100644 --- a/util/data/packed_rrset.c +++ b/util/data/packed_rrset.c @@ -164,9 +164,9 @@ rrset_key_hash(struct packed_rrset_key* key) /* this routine does not have a compressed name */ hashvalue_t h = 0xab; h = dname_query_hash(key->dname, h); - h = hashlittle(&t, sizeof(t), h); - h = hashlittle(&key->rrset_class, sizeof(uint16_t), h); - h = hashlittle(&key->flags, sizeof(uint32_t), h); + h = hashlittle(&t, sizeof(t), h); + h = hashlittle(&key->rrset_class, sizeof(uint16_t), h); + h = hashlittle(&key->flags, sizeof(uint32_t), h); return h; }