From adbfc2c65c45c8e7fdc6b0148e24ea3cef13ca86 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 15 Jun 2008 19:16:06 +0200 Subject: Fix ldb python bindings after events changes. (This used to be commit dd1f24d0c6dfb19ba08282b91998f6881782c4fb) --- source4/lib/ldb/ldb.i | 4 +++- source4/lib/ldb/ldb_wrap.c | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/ldb.i b/source4/lib/ldb/ldb.i index 061d13a2dd..23b5e0db7a 100644 --- a/source4/lib/ldb/ldb.i +++ b/source4/lib/ldb/ldb.i @@ -685,7 +685,9 @@ PyObject *PyExc_LdbError; /* Top-level ldb operations */ typedef struct ldb_context { %extend { - ldb(void) { return ldb_init(NULL); } + ldb(void) { + return ldb_init(NULL, event_context_init(NULL)); + } %feature("docstring") connect "S.connect(url,flags=0,options=None) -> None\n" \ "Connect to a LDB URL."; diff --git a/source4/lib/ldb/ldb_wrap.c b/source4/lib/ldb/ldb_wrap.c index ee374b85be..aed3f13abc 100644 --- a/source4/lib/ldb/ldb_wrap.c +++ b/source4/lib/ldb/ldb_wrap.c @@ -2546,7 +2546,6 @@ static swig_module_info swig_module = {swig_types, 24, 0, 0, 0, 0}; #include #include #include "talloc.h" -#include "events.h" #include "ldb.h" #include "ldb_errors.h" #include "ldb_private.h" @@ -3067,7 +3066,9 @@ static void py_ldb_debug(void *context, enum ldb_debug_level level, const char * PyObject *PyExc_LdbError; -SWIGINTERN ldb *new_ldb(){ return ldb_init(NULL, NULL); } +SWIGINTERN ldb *new_ldb(){ + return ldb_init(NULL, event_context_init(NULL)); + } SWIGINTERN int SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) -- cgit