# File lib/active_ldap/adapter/ldap.rb, line 136
      def add(dn, entries, options={})
        super do |dn, entries|
          controls = options[:controls]
          attributes = parse_entries(entries)
          info = {:dn => dn, :attributes => entries}
          if controls
            info.merge!(:name => :add, :controls => controls)
            execute(:add_ext, info, dn, attributes, controls, [])
          else
            execute(:add, info, dn, attributes)
          end
        end
      end