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))