From 01daef31625b45ba68e4d5def0506f3234360808 Mon Sep 17 00:00:00 2001 From: Baptiste Assmann Date: Wed, 2 Sep 2015 22:05:24 +0200 Subject: [PATCH] MINOR: dns: coding style update No affectation in a if condition. --- src/dns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dns.c b/src/dns.c index 4bc54489f..bf5afdf96 100644 --- a/src/dns.c +++ b/src/dns.c @@ -165,7 +165,8 @@ void dns_resolve_recv(struct dgram_conn *dgram) query_id = dns_response_get_query_id(buf); /* search the query_id in the pending resolution tree */ - if ((eb = eb32_lookup(&resolvers->query_ids, query_id)) == NULL) { + eb = eb32_lookup(&resolvers->query_ids, query_id); + if (eb == NULL) { /* unknown query id means an outdated response and can be safely ignored */ nameserver->counters.outdated += 1; continue;