1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4:events: allow nested events until we fixed all code to avoid them

metze
This commit is contained in:
Stefan Metzmacher 2009-03-12 10:05:47 +01:00
parent 6802394212
commit a3d5d8378c

View File

@ -17,6 +17,7 @@
*/
#include "includes.h"
#define TEVENT_DEPRECATED 1
#include "lib/events/events.h"
/*
@ -65,6 +66,7 @@ struct tevent_context *s4_event_context_init(TALLOC_CTX *mem_ctx)
ev = tevent_context_init_byname(mem_ctx, NULL);
if (ev) {
tevent_set_debug(ev, ev_wrap_debug, NULL);
tevent_loop_allow_nesting(ev);
}
return ev;
}