diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/globals.h | 4 | ||||
-rw-r--r-- | source3/smbd/notify_inotify.c | 2 | ||||
-rw-r--r-- | source3/smbd/oplock_irix.c | 4 | ||||
-rw-r--r-- | source3/smbd/process.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 4b0165b673..3461bc50df 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -659,7 +659,7 @@ struct smbd_server_connection { } oplocks; struct { - struct fd_event *fde; + struct tevent_fd *fde; struct { /* @@ -676,7 +676,7 @@ struct smbd_server_connection { /* * fde for the trusted_fd */ - struct fd_event *trusted_fde; + struct tevent_fd *trusted_fde; /* * Reference count for the fcntl lock to diff --git a/source3/smbd/notify_inotify.c b/source3/smbd/notify_inotify.c index bfa41c9940..c1543965a7 100644 --- a/source3/smbd/notify_inotify.c +++ b/source3/smbd/notify_inotify.c @@ -190,7 +190,7 @@ static void inotify_dispatch(struct inotify_private *in, /* called when the kernel has some events for us */ -static void inotify_handler(struct tevent_context *ev, struct fd_event *fde, +static void inotify_handler(struct tevent_context *ev, struct tevent_fd *fde, uint16_t flags, void *private_data) { struct inotify_private *in = talloc_get_type(private_data, diff --git a/source3/smbd/oplock_irix.c b/source3/smbd/oplock_irix.c index ea439452c0..635f8320bf 100644 --- a/source3/smbd/oplock_irix.c +++ b/source3/smbd/oplock_irix.c @@ -30,7 +30,7 @@ struct irix_oplocks_context { struct smbd_server_connection *sconn; int write_fd; int read_fd; - struct fd_event *read_fde; + struct tevent_fd *read_fde; bool pending; }; @@ -277,7 +277,7 @@ static void irix_release_kernel_oplock(struct kernel_oplocks *_ctx, } static void irix_oplocks_read_fde_handler(struct tevent_context *ev, - struct fd_event *fde, + struct tevent_fd *fde, uint16_t flags, void *private_data) { diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 0410f16fdc..2081a347ba 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2429,7 +2429,7 @@ process: } static void smbd_server_connection_handler(struct tevent_context *ev, - struct fd_event *fde, + struct tevent_fd *fde, uint16_t flags, void *private_data) { @@ -2447,7 +2447,7 @@ static void smbd_server_connection_handler(struct tevent_context *ev, } static void smbd_server_echo_handler(struct tevent_context *ev, - struct fd_event *fde, + struct tevent_fd *fde, uint16_t flags, void *private_data) { |