mirror of
https://github.com/samba-team/samba.git
synced 2025-02-18 17:57:55 +03:00
Fix ldb python bindings after events changes.
(This used to be commit dd1f24d0c6dfb19ba08282b91998f6881782c4fb)
This commit is contained in:
parent
9a882558fe
commit
adbfc2c65c
@ -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.";
|
||||
|
@ -2546,7 +2546,6 @@ static swig_module_info swig_module = {swig_types, 24, 0, 0, 0, 0};
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user