# File ../../auditor/lib/kasp_auditor/partial_auditor.rb, line 950
    def add_to_nsec_file(line)
      # Buffer up these lines, and write out when there are a few of them
      # Make sure that the buffer is flushed when the scan is complete!
      @nsec_buffer.push(line)
      if (@nsec_buffer.length > 5000)
        flush_nsec_buffer
      end
    end