diff options
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c index f348001456..28b9728d0a 100644 --- a/source4/lib/ldb/common/ldb.c +++ b/source4/lib/ldb/common/ldb.c @@ -444,7 +444,6 @@ int ldb_search(struct ldb_context *ldb, req->op.search.attrs = attrs; req->controls = NULL; - req->creds = NULL; req->async.context = res; req->async.callback = ldb_search_callback; req->async.timeout = 600; /* 10 minutes */ @@ -512,7 +511,6 @@ int ldb_add(struct ldb_context *ldb, req->operation = LDB_ASYNC_ADD; req->op.add.message = message; req->controls = NULL; - req->creds = NULL; req->async.context = NULL; req->async.callback = NULL; req->async.timeout = 600; /* 10 minutes */ @@ -545,7 +543,6 @@ int ldb_modify(struct ldb_context *ldb, req->operation = LDB_ASYNC_MODIFY; req->op.add.message = message; req->controls = NULL; - req->creds = NULL; req->async.context = NULL; req->async.callback = NULL; req->async.timeout = 600; /* 10 minutes */ @@ -575,7 +572,6 @@ int ldb_delete(struct ldb_context *ldb, const struct ldb_dn *dn) req->operation = LDB_ASYNC_DELETE; req->op.del.dn = dn; req->controls = NULL; - req->creds = NULL; req->async.context = NULL; req->async.callback = NULL; req->async.timeout = 600; /* 10 minutes */ @@ -605,7 +601,6 @@ int ldb_rename(struct ldb_context *ldb, const struct ldb_dn *olddn, const struct req->op.rename.olddn = olddn; req->op.rename.newdn = newdn; req->controls = NULL; - req->creds = NULL; req->async.context = NULL; req->async.callback = NULL; req->async.timeout = 600; /* 10 minutes */ |