Simplify returning boolean expression

This commit is contained in:
Mael G. 2020-12-22 21:30:32 -04:00
parent 607dc95b5a
commit 0b6b6d977c
1 changed files with 1 additions and 4 deletions

View File

@ -72,8 +72,5 @@ func checkReverse6(entry Record, result Record) bool {
check := strings.Replace(entry.Fqdn, result.Fqdn[1:], "", 1)
logrus.WithFields(logrus.Fields{"entry": entry.Fqdn, "result": result.Fqdn[1:]}).Debug("REVERSE checkReverse6 :")
logrus.Debugf("REVERSE checkReverse6 : %s", check)
if strings.Contains(check, IP6arpa) {
return false
}
return true
return !strings.Contains(check, IP6arpa)
}