From ae1cb5ca04eb46d1112868bc80b459eb2a168920 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 10:18:29 +0100 Subject: s3:smbd: s/struct timed_event/struct tevent_timer Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/smbd/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/server.c') diff --git a/source3/smbd/server.c b/source3/smbd/server.c index b8c876750d..2b8e3f72f2 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -62,7 +62,7 @@ struct smbd_parent_context { struct smbd_child_pid *children; size_t num_children; - struct timed_event *cleanup_te; + struct tevent_timer *cleanup_te; }; struct smbd_open_socket { @@ -395,7 +395,7 @@ static void add_child_pid(struct smbd_parent_context *parent, */ static void cleanup_timeout_fn(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { -- cgit