summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_notify_fam.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 10:53:02 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:48:00 +0100
commit64145e7958204f2b2c444e8e904b533dd2108290 (patch)
treeba65ed4e4046de8baf12618e61fe68a547061af6 /source3/modules/vfs_notify_fam.c
parentc0858030ba25d23b06a9dcf90b303f9325b7ac3e (diff)
downloadsamba-64145e7958204f2b2c444e8e904b533dd2108290.tar.gz
samba-64145e7958204f2b2c444e8e904b533dd2108290.tar.bz2
samba-64145e7958204f2b2c444e8e904b533dd2108290.zip
s3:modules: s/event_add_fd/tevent_add_fd and s/EVENT_FD_/TEVENT_FD_
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/modules/vfs_notify_fam.c')
-rw-r--r--source3/modules/vfs_notify_fam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_notify_fam.c b/source3/modules/vfs_notify_fam.c
index f10a4c9c94..54df0e4f24 100644
--- a/source3/modules/vfs_notify_fam.c
+++ b/source3/modules/vfs_notify_fam.c
@@ -113,9 +113,9 @@ static NTSTATUS fam_open_connection(FAMConnection *fam_conn,
return NT_STATUS_UNEXPECTED_IO_ERROR;
}
- if (event_add_fd(event_ctx, event_ctx,
+ if (tevent_add_fd(event_ctx, event_ctx,
FAMCONNECTION_GETFD(fam_conn),
- EVENT_FD_READ, fam_handler,
+ TEVENT_FD_READ, fam_handler,
(void *)fam_conn) == NULL) {
DEBUG(0, ("event_add_fd failed\n"));
FAMClose(fam_conn);