From 575d0a347fc22883f6c300b86983cc00e78460b2 Mon Sep 17 00:00:00 2001 From: Mattias Arthursson Date: Fri, 7 Dec 2007 18:30:59 +0000 Subject: [PATCH] Fix for LDAP-93 --- .../springframework/ldap/core/simple/SimpleLdapTemplate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-ldap-tiger/src/main/java/org/springframework/ldap/core/simple/SimpleLdapTemplate.java b/spring-ldap-tiger/src/main/java/org/springframework/ldap/core/simple/SimpleLdapTemplate.java index 8016e52f..bd8107e9 100644 --- a/spring-ldap-tiger/src/main/java/org/springframework/ldap/core/simple/SimpleLdapTemplate.java +++ b/spring-ldap-tiger/src/main/java/org/springframework/ldap/core/simple/SimpleLdapTemplate.java @@ -98,7 +98,7 @@ public class SimpleLdapTemplate implements SimpleLdapOperations { @SuppressWarnings("unchecked") public List search(String base, String filter, SearchControls controls, ParameterizedContextMapper mapper, DirContextProcessor processor) { - return ldapOperations.search(base, filter, controls, mapper); + return ldapOperations.search(base, filter, controls, mapper, processor); } /*