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/include/vfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/vfs.h') diff --git a/source3/include/vfs.h b/source3/include/vfs.h index d60cb5e73b..6d9be77bfd 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -213,14 +213,14 @@ typedef struct files_struct { uint32 share_access; /* NTCreateX share constants (FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE). */ bool update_write_time_triggered; - struct timed_event *update_write_time_event; + struct tevent_timer *update_write_time_event; bool update_write_time_on_close; struct timespec close_write_time; bool write_time_forced; int oplock_type; int sent_oplock_break; - struct timed_event *oplock_timeout; + struct tevent_timer *oplock_timeout; struct lock_struct last_lock_failure; int current_lock_count; /* Count the number of outstanding locks and pending locks. */ -- cgit