]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
nicer indentation.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 3 Mar 2008 10:28:12 +0000 (10:28 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 3 Mar 2008 10:28:12 +0000 (10:28 +0000)
git-svn-id: file:///svn/unbound/trunk@1012 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
util/data/packed_rrset.c

index 8b86d72bd93cdb0608b7a7ed3768261f8b83e3ef..24b9009eca4dafe5c3cba82c2896a13048bcd753 100644 (file)
@@ -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.
index df01330e58a074c9ff07cd61bee64da0c772c369..19b77a4610fa7e944bd243abee379ae96d519775 100644 (file)
@@ -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;
 }