1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r7608: bug fix after yesterday's change

This commit is contained in:
Simo Sorce 2005-06-15 13:01:39 +00:00 committed by Gerald (Jerry) Carter
parent 5f37f7a524
commit 0218fc678e

View File

@ -140,7 +140,7 @@ int ldb_load_modules(struct ldb_context *ldb, const char *options[])
const char * const attrs[] = { "@LIST" , NULL};
struct ldb_message **msg = NULL;
ret = ldb_search(ldb, "", LDB_SCOPE_BASE, "dn=@MODULES", attrs, &msg);
ret = ldb_search(ldb, "@MODULES", LDB_SCOPE_BASE, "", attrs, &msg);
if (ret == 0 || (ret == 1 && msg[0]->num_elements == 0)) {
ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db\n");
} else {