]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #1173: differ local-zone type deny from unset tag_actions element.
authorRalph Dolmans <ralph@nlnetlabs.nl>
Mon, 5 Dec 2016 14:48:49 +0000 (14:48 +0000)
committerRalph Dolmans <ralph@nlnetlabs.nl>
Mon, 5 Dec 2016 14:48:49 +0000 (14:48 +0000)
git-svn-id: file:///svn/unbound/trunk@3945 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
services/localzone.h

index 81ecca31fcecc90949019802719ee1d09a73dcab..305dec4e983dc4a9444f8b78abb29b3d775e342e 100644 (file)
@@ -1,8 +1,12 @@
+5 December 2016: Ralph
+       - Fix #1173: differ local-zone type deny from unset
+         tag_actions element.
+
 5 December 2016: Wouter
        - Fix #1170: document that 'inform' local-zone uses local-data.
 
- 1 December 2016: Ralph
-       - hyphen as minus fix, by Andreas Schulze
+1 December 2016: Ralph
+       - hyphen as minus fix, by Andreas Schulze
 
 30 November 2016: Ralph
        - Added local-zones and local-data bulk addition and removal
index 46f5cdbec872ccfe4197b6a79a33cd3e845d96e7..f35771004b5c63d2071d3b8b4b883e4d5cfc4026 100644 (file)
@@ -60,8 +60,8 @@ struct config_strlist;
  * local-data directly.
  */
 enum localzone_type {
-       /** drop query */
-       local_zone_deny = 0,
+       /** drop query. Start at 1 to differ from unset tag_actions element. */
+       local_zone_deny = 1,
        /** answer with error */
        local_zone_refuse,
        /** answer nxdomain or nodata */