mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
nicer indentation.
git-svn-id: file:///svn/unbound/trunk@1012 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
288f022dd6
commit
30478d3e17
2 changed files with 5 additions and 3 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue