aboutsummaryrefslogtreecommitdiff
path: root/lib/ldap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ldap.c')
-rw-r--r--lib/ldap.c10
1 files 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);
}