From 87b482a89e045b8ae253911cb55b4957ee71175e Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Tue, 21 Jun 2011 11:32:02 +0200 Subject: ldb - two cosmetic fixes @ldb.h: Removes an invalid comment line @pyldb.c: Fixes indentation --- lib/ldb/include/ldb.h | 2 -- lib/ldb/pyldb.c | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/ldb/include/ldb.h b/lib/ldb/include/ldb.h index 4220ed096f..ae34019216 100644 --- a/lib/ldb/include/ldb.h +++ b/lib/ldb/include/ldb.h @@ -1425,8 +1425,6 @@ int ldb_build_extended_req(struct ldb_request **ret_req, /** call an extended operation - This function deletes a record from the database. - \param ldb the context associated with the database (from ldb_init()) \param oid the OID of the extended operation. \param data a void pointer a the extended operation specific parameters, diff --git a/lib/ldb/pyldb.c b/lib/ldb/pyldb.c index 218505dd8c..72680c1710 100644 --- a/lib/ldb/pyldb.c +++ b/lib/ldb/pyldb.c @@ -1143,11 +1143,11 @@ static PyObject *py_ldb_add(PyLdbObject *self, PyObject *args, PyObject *kwargs) ret = ldb_request(ldb_ctx, req); if (ret == LDB_SUCCESS) { - ret = ldb_wait(req->handle, LDB_WAIT_ALL); + ret = ldb_wait(req->handle, LDB_WAIT_ALL); } if (ret == LDB_SUCCESS) { - ret = ldb_transaction_commit(ldb_ctx); + ret = ldb_transaction_commit(ldb_ctx); } else { ldb_transaction_cancel(ldb_ctx); if (ldb_ctx->err_string == NULL) { -- cgit