From 496aeba797c7d0246e88eedadff080fcaffd9013 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Mon, 20 Mar 2017 12:34:59 +0100 Subject: [PATCH 1/1] Fix comment typo in cache_gc_timer MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Miłecki --- cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.c b/cache.c index 921e612..6ff2479 100644 --- a/cache.c +++ b/cache.c @@ -78,7 +78,7 @@ cache_gc_timer(struct uloop_timeout *timeout) avl_for_each_element_safe(&records, r, avl, p) { if (!cache_is_expired(r->time, r->ttl, r->refresh)) continue; - /* Records other and A(AAA) are handled as services */ + /* Records other than A(AAA) are handled as services */ if (r->type != TYPE_A && r->type != TYPE_AAAA) { cache_record_free(r); continue; -- 2.11.0