From d7cd761047376576d281bbc2dc40c02afa251912 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 30 Dec 2009 19:43:12 +0000 Subject: [PATCH] Oops, should have removed 'not' in previous commit. --- lib/ldap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/ldap.c b/lib/ldap.c index 708d8f828..1b86e5925 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -488,15 +488,15 @@ static void _ldap_trace (const char *fmt, ...) */ static int str2scope (const char *p) { - if(!strequal(p, "one")) + if(strequal(p, "one")) return LDAP_SCOPE_ONELEVEL; - if(!strequal(p, "onetree")) + if(strequal(p, "onetree")) return LDAP_SCOPE_ONELEVEL; - if(!strequal(p, "base")) + if(strequal(p, "base")) return LDAP_SCOPE_BASE; - if(!strequal(p, "sub")) + if(strequal(p, "sub")) return LDAP_SCOPE_SUBTREE; - if(!strequal( p, "subtree")) + if(strequal( p, "subtree")) return LDAP_SCOPE_SUBTREE; return (-1); } -- 2.40.0