diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 10:24:12 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:48:00 +0100 |
commit | c0858030ba25d23b06a9dcf90b303f9325b7ac3e (patch) | |
tree | 201b5f71098470d87f027904787f794c3cfbd89f /source3/lib | |
parent | 9ececaae5c13216ce9e29eebb0fad0d7a0e2ab90 (diff) | |
download | samba-c0858030ba25d23b06a9dcf90b303f9325b7ac3e.tar.gz samba-c0858030ba25d23b06a9dcf90b303f9325b7ac3e.tar.bz2 samba-c0858030ba25d23b06a9dcf90b303f9325b7ac3e.zip |
s3:lib: s/struct fd_event/struct tevent_fd
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/ctdbd_conn.c | 4 | ||||
-rw-r--r-- | source3/lib/fncall.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index bae70c6fb5..e1ca3ce4e9 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -57,7 +57,7 @@ struct ctdbd_connection { uint32_t our_vnn; uint64_t rand_srvid; struct ctdb_packet_context *pkt; - struct fd_event *fde; + struct tevent_fd *fde; void (*release_ip_handler)(const char *ip_addr, void *private_data); void *release_ip_priv; @@ -686,7 +686,7 @@ static NTSTATUS ctdb_handle_message(uint8_t *buf, size_t length, */ static void ctdbd_socket_handler(struct tevent_context *event_ctx, - struct fd_event *event, + struct tevent_fd *event, uint16 flags, void *private_data) { diff --git a/source3/lib/fncall.c b/source3/lib/fncall.c index e40fd8343d..fb3d5c9887 100644 --- a/source3/lib/fncall.c +++ b/source3/lib/fncall.c @@ -40,7 +40,7 @@ struct fncall_context { struct fncall_state **orphaned; int num_orphaned; - struct fd_event *fde; + struct tevent_fd *fde; }; static void fncall_handler(struct tevent_context *ev, struct tevent_fd *fde, |