summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-09-30 00:28:06 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-09-30 00:28:06 +0200
commit2ed71ce6bc97cbb9b854bb24ab49001910eda36d (patch)
treea1dea4f8b2fd98d8e10de3345a6f9c79f4d0b86b /source4
parentdd4d309cac42c353c118d50e2f47ed0d27f429fb (diff)
downloadsamba-2ed71ce6bc97cbb9b854bb24ab49001910eda36d.tar.gz
samba-2ed71ce6bc97cbb9b854bb24ab49001910eda36d.tar.bz2
samba-2ed71ce6bc97cbb9b854bb24ab49001910eda36d.zip
Remove ldb_module_wait implementation - ldb_module.wait() is gone.
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/ldb.i17
1 files changed, 0 insertions, 17 deletions
diff --git a/source4/lib/ldb/ldb.i b/source4/lib/ldb/ldb.i
index 1e3a3169c8..024ba1959a 100644
--- a/source4/lib/ldb/ldb.i
+++ b/source4/lib/ldb/ldb.i
@@ -1219,22 +1219,6 @@ int py_module_del_transaction(struct ldb_module *mod)
return LDB_SUCCESS;
}
-int py_module_wait(struct ldb_handle *mod, enum ldb_wait_type wait_type)
-{
- PyObject *py_ldb = mod->private_data;
- PyObject *py_result;
-
- py_result = PyObject_CallMethod(py_ldb, "wait", "i", wait_type);
-
- if (py_result == NULL) {
- return LDB_ERR_OPERATIONS_ERROR;
- }
-
- Py_DECREF(py_result);
-
- return LDB_SUCCESS;
-}
-
int py_module_sequence_number(struct ldb_module *mod, struct ldb_request *req)
{
PyObject *py_ldb = mod->private_data;
@@ -1308,7 +1292,6 @@ int py_module_init (struct ldb_module *mod)
$1->start_transaction = py_module_start_transaction;
$1->end_transaction = py_module_end_transaction;
$1->del_transaction = py_module_del_transaction;
- $1->wait = py_module_wait;
$1->sequence_number = py_module_sequence_number;
}