From a6026ce48a90fa17d5c879419d16e8e31b745d65 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 30 Jan 2020 16:16:05 +0100 Subject: [PATCH] Ignore lines starting with '#' Fixes #1171 --- .ci/blacklist.txt | 4 ++++ dnscrypt-proxy/common.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.ci/blacklist.txt b/.ci/blacklist.txt index 37f97375..d5b69d6b 100644 --- a/.ci/blacklist.txt +++ b/.ci/blacklist.txt @@ -1,3 +1,7 @@ +################## +# Test blacklist # +################## + ad.* ads.* banner.* diff --git a/dnscrypt-proxy/common.go b/dnscrypt-proxy/common.go index 4b9236e3..0c514f66 100644 --- a/dnscrypt-proxy/common.go +++ b/dnscrypt-proxy/common.go @@ -145,7 +145,7 @@ func StringStripSpaces(str string) string { func TrimAndStripInlineComments(str string) string { if idx := strings.LastIndexByte(str, '#'); idx >= 0 { - if idx == 0 { + if idx == 0 || str[0] == '#' { return "" } if prev := str[idx-1]; prev == ' ' || prev == '\t' {