From abf8e166b8a23b256fada0f317cf552cc4f53ec1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 10:53:02 +0100 Subject: s3:printing: s/event_add_fd/tevent_add_fd and s/EVENT_FD_/TEVENT_FD_ Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/printing/print_cups.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c index 396f81802b..6c1e9ce23c 100644 --- a/source3/printing/print_cups.c +++ b/source3/printing/print_cups.c @@ -586,9 +586,9 @@ bool cups_cache_reload(struct tevent_context *ev, *p_pipe_fd )); /* Trigger an event when the pipe can be read. */ - cache_fd_event = event_add_fd(ev, + cache_fd_event = tevent_add_fd(ev, NULL, *p_pipe_fd, - EVENT_FD_READ, + TEVENT_FD_READ, cups_async_callback, (void *)cb_args); if (!cache_fd_event) { -- cgit