summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/pyldb.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-21 09:16:45 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-21 10:44:04 +0100
commitd965ff05c9923c8a0e440e905d0d9fe662cc5db0 (patch)
tree88b1ab945e9147b10dad13b6a67b0f2bfef4bb5d /source4/lib/ldb/pyldb.c
parent53293f2ccba357eab6c4325a08517660e979c1d8 (diff)
downloadsamba-d965ff05c9923c8a0e440e905d0d9fe662cc5db0.tar.gz
samba-d965ff05c9923c8a0e440e905d0d9fe662cc5db0.tar.bz2
samba-d965ff05c9923c8a0e440e905d0d9fe662cc5db0.zip
s4:ldb: remove dependency to samba4's events wrapper
metze
Diffstat (limited to 'source4/lib/ldb/pyldb.c')
-rw-r--r--source4/lib/ldb/pyldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/pyldb.c b/source4/lib/ldb/pyldb.c
index 89ef7aeddf..9e98363c6f 100644
--- a/source4/lib/ldb/pyldb.c
+++ b/source4/lib/ldb/pyldb.c
@@ -525,7 +525,7 @@ static PyObject *py_ldb_new(PyTypeObject *type, PyObject *args, PyObject *kwargs
{
PyLdbObject *ret;
struct ldb_context *ldb;
- ldb = ldb_init(NULL, event_context_init(NULL));
+ ldb = ldb_init(NULL, NULL);
if (ldb == NULL) {
PyErr_NoMemory();
return NULL;