summaryrefslogtreecommitdiff
path: root/source4/libcli/resolve
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2010-05-25 15:26:42 -0400
committerSimo Sorce <idra@samba.org>2011-08-13 09:54:15 -0400
commitab81505e080e72c2217cb3946b04eee872397763 (patch)
tree4e3536178f2f6f9a27e31e074b4852545d6b294a /source4/libcli/resolve
parentf364daed2203170bc772c8ff9bb28f78da615669 (diff)
downloadsamba-ab81505e080e72c2217cb3946b04eee872397763.tar.gz
samba-ab81505e080e72c2217cb3946b04eee872397763.tar.bz2
samba-ab81505e080e72c2217cb3946b04eee872397763.zip
s4:libcli: use tevent_ fn names instead of legacy event_ ones
Diffstat (limited to 'source4/libcli/resolve')
-rw-r--r--source4/libcli/resolve/dns_ex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/resolve/dns_ex.c b/source4/libcli/resolve/dns_ex.c
index 5921212579..8f21b7fde5 100644
--- a/source4/libcli/resolve/dns_ex.c
+++ b/source4/libcli/resolve/dns_ex.c
@@ -531,7 +531,7 @@ struct composite_context *resolve_name_dns_ex_send(TALLOC_CTX *mem_ctx,
/* we need to put the child in our event context so
we know when the dns_lookup() has finished */
- state->fde = event_add_fd(c->event_ctx, c, state->child_fd, EVENT_FD_READ,
+ state->fde = tevent_add_fd(c->event_ctx, c, state->child_fd, TEVENT_FD_READ,
pipe_handler, c);
if (composite_nomem(state->fde, c)) {
close(fd[0]);