]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
review, found nothing, except for layout and typo
authorMatthijs Mekking <matje@nlnetlabs.nl>
Mon, 3 Dec 2012 14:28:06 +0000 (14:28 +0000)
committerMatthijs Mekking <matje@nlnetlabs.nl>
Mon, 3 Dec 2012 14:28:06 +0000 (14:28 +0000)
git-svn-id: file:///svn/unbound/trunk@2785 be551aaa-1e26-0410-a405-d3ace91eadb9

services/outside_network.c
util/config_file.c

index f34516d94f4c5302de80ddf8a2672bf132510441..4f5d0568f03fe91b52877e90e0693e7d75861f8e 100644 (file)
@@ -1796,7 +1796,7 @@ outnet_serviced_query(struct outside_network* outnet,
        struct service_callback* cb;
        serviced_gen_query(buff, qname, qnamelen, qtype, qclass, flags);
        sq = lookup_serviced(outnet, buff, dnssec, addr, addrlen);
-       /* duplicate entries are inclded in the callback list, because
+       /* duplicate entries are included in the callback list, because
         * there is a counterpart registration by our caller that needs to
         * be doubly-removed (with callbacks perhaps). */
        if(!(cb = (struct service_callback*)malloc(sizeof(*cb))))
index dffbce6b935041c62dfdd763b8dc925e6ded4d0b..b946f0df0dc563c586996f250b9d29651d799999 100644 (file)
@@ -1068,9 +1068,9 @@ cfg_convert_timeval(const char* str)
 int 
 cfg_count_numbers(const char* s)
 {
-       /* format ::= (sp num)+ sp      */
-       /* num ::= [-](0-9)+        */
-       /* sp ::= (space|tab)*    */
+       /* format ::= (sp num)+ sp  */
+       /* num ::= [-](0-9)+        */
+       /* sp ::= (space|tab)*      */
        int num = 0;
        while(*s) {
                while(*s && isspace((int)*s))