Skip to content
Snippets Groups Projects
Commit 51fb0947 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#541: fix log check bug

parent 001061da
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ static int ldap_log_check( LDAP *ld, int loglvl )
if(ld == NULL) {
errlvl = ldap_debug;
} else {
errlvl = ld->ld_errno;
errlvl = ld->ld_debug;
}
return errlvl & loglvl ? 1 : 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment