From 5361b081d32ccb6697c567568e1f4937a808a276 Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Mon, 3 Dec 2012 14:28:06 +0000 Subject: [PATCH] review, found nothing, except for layout and typo git-svn-id: file:///svn/unbound/trunk@2785 be551aaa-1e26-0410-a405-d3ace91eadb9 --- services/outside_network.c | 2 +- util/config_file.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/services/outside_network.c b/services/outside_network.c index f34516d94..4f5d0568f 100644 --- a/services/outside_network.c +++ b/services/outside_network.c @@ -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)))) diff --git a/util/config_file.c b/util/config_file.c index dffbce6b9..b946f0df0 100644 --- a/util/config_file.c +++ b/util/config_file.c @@ -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))