git.samba.org
/
ira
/
wip.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
06f88fe
)
s4:ldb: allow nested events until the code is fixed to avoid them
author
Stefan Metzmacher
<metze@samba.org>
Thu, 12 Mar 2009 09:05:05 +0000
(10:05 +0100)
committer
Stefan Metzmacher
<metze@samba.org>
Thu, 12 Mar 2009 13:21:20 +0000
(14:21 +0100)
metze
source4/lib/ldb/common/ldb.c
patch
|
blob
|
history
diff --git
a/source4/lib/ldb/common/ldb.c
b/source4/lib/ldb/common/ldb.c
index e17e10dcaafaf8da617d4cd08f98e26420a12b4c..86ce2069a51e8ebd7ea1e5d32a49b465ad4d1d12 100644
(file)
--- a/
source4/lib/ldb/common/ldb.c
+++ b/
source4/lib/ldb/common/ldb.c
@@
-32,6
+32,7
@@
* Author: Andrew Tridgell
*/
* Author: Andrew Tridgell
*/
+#define TEVENT_DEPRECATED 1
#include "ldb_private.h"
static int ldb_context_destructor(void *ptr)
#include "ldb_private.h"
static int ldb_context_destructor(void *ptr)
@@
-56,7
+57,7
@@
static void ldb_tevent_debug(void *context, enum tevent_debug_level level,
static void ldb_tevent_debug(void *context, enum tevent_debug_level level,
const char *fmt, va_list ap)
{
static void ldb_tevent_debug(void *context, enum tevent_debug_level level,
const char *fmt, va_list ap)
{
- struct ldb_context
= talloc_get_type_abort
(context, struct ldb_context);
+ struct ldb_context
*ldb = talloc_get_type
(context, struct ldb_context);
enum ldb_debug_level ldb_level = LDB_DEBUG_FATAL;
char *s = NULL;
enum ldb_debug_level ldb_level = LDB_DEBUG_FATAL;
char *s = NULL;
@@
-97,6
+98,7
@@
struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx)
if (ev_ctx == NULL) {
ev_ctx = tevent_context_init(talloc_autofree_context());
tevent_set_debug(ev_ctx, ldb_tevent_debug, ldb);
if (ev_ctx == NULL) {
ev_ctx = tevent_context_init(talloc_autofree_context());
tevent_set_debug(ev_ctx, ldb_tevent_debug, ldb);
+ tevent_loop_allow_nesting(ev_ctx);
}
ret = ldb_setup_wellknown_attributes(ldb);
}
ret = ldb_setup_wellknown_attributes(ldb);