From 80421ee9752ed06e12721ef2a28b08e1c311e31e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 10:18:29 +0100 Subject: [PATCH] s3:modules: s/struct timed_event/struct tevent_timer Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/modules/vfs_aio_fork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c index 4f6574bb475..54fb4d20151 100644 --- a/source3/modules/vfs_aio_fork.c +++ b/source3/modules/vfs_aio_fork.c @@ -138,7 +138,7 @@ struct aio_child { struct aio_child_list { struct aio_child *children; - struct timed_event *cleanup_event; + struct tevent_timer *cleanup_event; }; static void free_aio_children(void **p) @@ -257,7 +257,7 @@ static ssize_t write_fd(int fd, void *ptr, size_t nbytes, int sendfd) } static void aio_child_cleanup(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { -- 2.11.4.GIT