From 96180f2cac8ebcbd7e2d683e891011697357dc9f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 9 Dec 2005 16:43:19 +0000 Subject: r12140: - add an additional_flags field to the fd_event struct, so that the events backend can store private flags - add function to access the gtk event loop ops struct metze (This used to be commit a5cc0758a393f36a770cdd57e317214d03934c13) --- source4/lib/events/events_standard.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/lib/events/events_standard.c') diff --git a/source4/lib/events/events_standard.c b/source4/lib/events/events_standard.c index 1a3bdc1e16..cab1ab52b9 100644 --- a/source4/lib/events/events_standard.c +++ b/source4/lib/events/events_standard.c @@ -209,6 +209,7 @@ static struct fd_event *std_event_add_fd(struct event_context *ev, TALLOC_CTX *m fde->flags = flags; fde->handler = handler; fde->private_data = private_data; + fde->additional_flags = 0; fde->additional_data = NULL; DLIST_ADD(std_ev->fd_events, fde); -- cgit