From: Wouter Wijngaards Date: Mon, 3 Mar 2008 10:28:12 +0000 (+0000) Subject: nicer indentation. X-Git-Tag: release-0.11~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30478d3e1741ce78dce72fd1c3b3986d36ef2dc8;p=thirdparty%2Funbound.git nicer indentation. git-svn-id: file:///svn/unbound/trunk@1012 be551aaa-1e26-0410-a405-d3ace91eadb9 --- 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; }