diff options
author | Simo Sorce <idra@samba.org> | 2008-10-15 14:03:20 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-10-16 13:42:22 -0400 |
commit | 8b0afbc4aa94628290d74165cab6bec97c7e532b (patch) | |
tree | 11d9529563f88a929de1ff44364be0d5864031bd /ldb/ldb.i | |
parent | f11b502bf535ff5e09e595dbb95d9bdd5e2e7857 (diff) | |
download | sssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.tar.gz sssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.tar.bz2 sssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.zip |
Transform the sequence_number operation into a normal extended operation as it should always have been. Make it also async so that it is not a special case.
(Sync from upstream)
Diffstat (limited to 'ldb/ldb.i')
-rw-r--r-- | ldb/ldb.i | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -1219,25 +1219,6 @@ int py_module_del_transaction(struct ldb_module *mod) return LDB_SUCCESS; } -int py_module_sequence_number(struct ldb_module *mod, struct ldb_request *req) -{ - PyObject *py_ldb = mod->private_data; - PyObject *py_result; - int ret; - - py_result = PyObject_CallMethod(py_ldb, "sequence_number", "ili", req->op.seq_num.type, req->op.seq_num.seq_num, req->op.seq_num.flags); - - if (py_result == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } - - ret = PyInt_AsLong(py_result); - - Py_DECREF(py_result); - - return ret; -} - static int py_module_destructor(void *_mod) { struct ldb_module *mod = _mod; @@ -1292,7 +1273,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->sequence_number = py_module_sequence_number; } %feature("docstring") ldb_register_module "S.register_module(module) -> None\n" |