From c0c78c92d57c53276bb7f08468bcc716ba272497 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Thu, 9 Feb 2017 09:19:05 +0100 Subject: [PATCH] Fix/change comment format about port 5353 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It wasn't ANSI C comment and there were 2 unneeded spaces. Signed-off-by: Rafał Miłecki --- dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns.c b/dns.c index aac1de1..de0c21a 100644 --- a/dns.c +++ b/dns.c @@ -396,7 +396,7 @@ dns_handle_packet(struct interface *iface, struct sockaddr *s, uint16_t port, ui } if (h->questions && !iface->multicast && port != 5353) - // silently drop unicast questions that dont originate from port 5353 + /* silently drop unicast questions that dont originate from port 5353 */ return; while (h->questions-- > 0) { -- 2.30.2