]> git.ipfire.org Git - people/ms/dnsmasq.git/commitdiff
Trivial format fix
authorSimon Kelley <simon@thekelleys.org.uk>
Fri, 17 Jan 2014 14:40:46 +0000 (14:40 +0000)
committerSimon Kelley <simon@thekelleys.org.uk>
Fri, 17 Jan 2014 14:40:46 +0000 (14:40 +0000)
src/forward.c

index c1f1975f0a51e1c736988c2eaf617cd1de575999..cf6ada79996d2f223dc89db8fdbe3eb9de4bc954 100644 (file)
@@ -513,10 +513,11 @@ static size_t process_reply(struct dns_header *header, time_t now, struct server
       char *matchstart = daemon->namebuff + namelen - domainlen;
       if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) &&
          (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) &&
-         domainlen >= matchlen) {
-       matchlen = domainlen;
-       sets = ipset_pos->sets;
-      }
+         domainlen >= matchlen) 
+       {
+         matchlen = domainlen;
+         sets = ipset_pos->sets;
+       }
     }
 #endif