mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
parent
3a94523d65
commit
a6026ce48a
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
##################
|
||||||
|
# Test blacklist #
|
||||||
|
##################
|
||||||
|
|
||||||
ad.*
|
ad.*
|
||||||
ads.*
|
ads.*
|
||||||
banner.*
|
banner.*
|
||||||
|
|
|
@ -145,7 +145,7 @@ func StringStripSpaces(str string) string {
|
||||||
|
|
||||||
func TrimAndStripInlineComments(str string) string {
|
func TrimAndStripInlineComments(str string) string {
|
||||||
if idx := strings.LastIndexByte(str, '#'); idx >= 0 {
|
if idx := strings.LastIndexByte(str, '#'); idx >= 0 {
|
||||||
if idx == 0 {
|
if idx == 0 || str[0] == '#' {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
if prev := str[idx-1]; prev == ' ' || prev == '\t' {
|
if prev := str[idx-1]; prev == ' ' || prev == '\t' {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue