From 183c379fe58ca60f5ef2d1f2033d035d4117ac8f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 29 Dec 2008 20:24:57 +0100 Subject: s4:lib/tevent: rename structs list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze --- source4/kdc/kdc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/kdc/kdc.c') diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c index 81ac94c482d..c11c4a6eeed 100644 --- a/source4/kdc/kdc.c +++ b/source4/kdc/kdc.c @@ -44,7 +44,7 @@ /* Disgusting hack to get a mem_ctx and lp_ctx into the hdb plugin, when * used as a keytab */ TALLOC_CTX *kdc_mem_ctx; -struct event_context *kdc_ev_ctx; +struct tevent_context *kdc_ev_ctx; struct loadparm_context *kdc_lp_ctx; /* hold all the info needed to send a reply */ @@ -66,7 +66,7 @@ typedef bool (*kdc_process_fn_t)(struct kdc_server *kdc, struct kdc_socket { struct socket_context *sock; struct kdc_server *kdc; - struct fd_event *fde; + struct tevent_fd *fde; /* a queue of outgoing replies that have been deferred */ struct kdc_reply *send_queue; @@ -199,7 +199,7 @@ static void kdc_recv_handler(struct kdc_socket *kdc_socket) /* handle fd events on a KDC socket */ -static void kdc_socket_handler(struct event_context *ev, struct fd_event *fde, +static void kdc_socket_handler(struct tevent_context *ev, struct tevent_fd *fde, uint16_t flags, void *private) { struct kdc_socket *kdc_socket = talloc_get_type(private, struct kdc_socket); -- cgit v1.2.1