1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3:modules: s/struct timed_event/struct tevent_timer

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Stefan Metzmacher 2013-02-18 10:18:29 +01:00 committed by Michael Adam
parent 7f41a62e75
commit 80421ee975

View File

@ -138,7 +138,7 @@ struct aio_child {
struct aio_child_list {
struct aio_child *children;
struct timed_event *cleanup_event;
struct tevent_timer *cleanup_event;
};
static void free_aio_children(void **p)
@ -257,7 +257,7 @@ static ssize_t write_fd(int fd, void *ptr, size_t nbytes, int sendfd)
}
static void aio_child_cleanup(struct tevent_context *event_ctx,
struct timed_event *te,
struct tevent_timer *te,
struct timeval now,
void *private_data)
{