Improve debug message
authorVolker Lendecke <vl@sernet.de>
Mon, 26 Nov 2007 13:30:50 +0000 (14:30 +0100)
committerVolker Lendecke <vl@sernet.de>
Mon, 26 Nov 2007 13:36:30 +0000 (14:36 +0100)
Fix bug 5056, thanks to debian package maintainer
(This used to be commit 5b4ba4bfc54e2fa468abe15383e5b33eb5bd1324)

source3/passdb/pdb_ldap.c

index a3637bffd4eb689c06f231949ef3503f374f4b09..215cd3cb5ed2e9d6e17337833f5f3eaabcd41257 100644 (file)
@@ -2536,7 +2536,8 @@ static NTSTATUS ldapsam_getgroup(struct pdb_methods *methods,
        count = ldap_count_entries(priv2ld(ldap_state), result);
 
        if (count < 1) {
-               DEBUG(4, ("ldapsam_getgroup: Did not find group\n"));
+               DEBUG(4, ("ldapsam_getgroup: Did not find group, filter was "
+                         "%s\n", filter));
                ldap_msgfree(result);
                return NT_STATUS_NO_SUCH_GROUP;
        }