# File ../../auditor/lib/kasp_auditor/partial_auditor.rb, line 779
    def check_nsec_ttl(nsec_ttl, line, type)
      nsec_ttl = nsec_ttl.to_i
      if (@config.soa && @config.soa.minimum)
        if (nsec_ttl != @config.soa.minimum)
          log(LOG_ERR, "#{type} record should have TTL of #{@config.soa.minimum} from zone policy //Zone/SOA/Minimum, but is #{line.chomp}")
        end
      else
        if (nsec_ttl != @soa.minimum)
          log(LOG_ERR, "#{type} record should have TTL of #{@soa.minimum} from unsigned zone SOA RR minimum, but is #{line.chomp}")
        end
      end
    end