From b1feb9d4324dfca7190ec3816d43392b65a94671 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 25 May 2010 15:27:41 -0400 Subject: s4:ntvfs: use tevent_ fn names instead of legacy event_ ones --- source4/ntvfs/posix/pvfs_wait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntvfs/posix/pvfs_wait.c') diff --git a/source4/ntvfs/posix/pvfs_wait.c b/source4/ntvfs/posix/pvfs_wait.c index 013de69889..89b0cee2f1 100644 --- a/source4/ntvfs/posix/pvfs_wait.c +++ b/source4/ntvfs/posix/pvfs_wait.c @@ -156,7 +156,7 @@ struct pvfs_wait *pvfs_wait_message(struct pvfs_state *pvfs, if (!timeval_is_zero(&end_time)) { /* setup a timer */ - event_add_timed(pwait->ev, pwait, end_time, pvfs_wait_timeout, pwait); + tevent_add_timer(pwait->ev, pwait, end_time, pvfs_wait_timeout, pwait); } /* register with the messaging subsystem for this message -- cgit