summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/pvfs_search.c
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2010-05-25 15:27:41 -0400
committerSimo Sorce <idra@samba.org>2011-08-13 09:54:16 -0400
commitb1feb9d4324dfca7190ec3816d43392b65a94671 (patch)
tree9ea26552dddedc46264f763368f18f266618fb09 /source4/ntvfs/posix/pvfs_search.c
parent4a8fdc3958b7bc42bd90d4307f6fb0556944b300 (diff)
downloadsamba-b1feb9d4324dfca7190ec3816d43392b65a94671.tar.gz
samba-b1feb9d4324dfca7190ec3816d43392b65a94671.tar.bz2
samba-b1feb9d4324dfca7190ec3816d43392b65a94671.zip
s4:ntvfs: use tevent_ fn names instead of legacy event_ ones
Diffstat (limited to 'source4/ntvfs/posix/pvfs_search.c')
-rw-r--r--source4/ntvfs/posix/pvfs_search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_search.c b/source4/ntvfs/posix/pvfs_search.c
index 893f55c5ac..8cba72da43 100644
--- a/source4/ntvfs/posix/pvfs_search.c
+++ b/source4/ntvfs/posix/pvfs_search.c
@@ -61,7 +61,7 @@ static void pvfs_search_setup_timer(struct pvfs_search_state *search)
struct tevent_context *ev = search->pvfs->ntvfs->ctx->event_ctx;
if (search->handle == INVALID_SEARCH_HANDLE) return;
talloc_free(search->te);
- search->te = event_add_timed(ev, search,
+ search->te = tevent_add_timer(ev, search,
timeval_current_ofs(search->pvfs->search.inactivity_time, 0),
pvfs_search_timer, search);
}