diff options
author | Simo Sorce <idra@samba.org> | 2006-05-29 11:57:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:41 -0500 |
commit | 03703a58d7fe441ec5dcbe1814cea3f55544de55 (patch) | |
tree | afe4aa0781f0d90c919caa00718a7234d062ab1f /source4/lib/ldb/common | |
parent | 279e9166defca334d27bdde7805760a7de1f169f (diff) | |
download | samba-03703a58d7fe441ec5dcbe1814cea3f55544de55.tar.gz samba-03703a58d7fe441ec5dcbe1814cea3f55544de55.tar.bz2 samba-03703a58d7fe441ec5dcbe1814cea3f55544de55.zip |
r15932: Remove per request creds
They have never benn used and make little sense too imo
(This used to be commit f0c1d08d50f8a3e25650ac85b178ec7a43e433d9)
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 */ |