summaryrefslogtreecommitdiff
path: root/source4/libcli/resolve
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-02-03 11:25:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:30 -0500
commit0798d54b4fc28be881e2c4012663b1461bc85ba7 (patch)
tree532a93a578fd021c827bbb6bf5c65525b77671b7 /source4/libcli/resolve
parent6e0a56f73b7f75e45d97a574cf6fd1fc4f4bff9b (diff)
downloadsamba-0798d54b4fc28be881e2c4012663b1461bc85ba7.tar.gz
samba-0798d54b4fc28be881e2c4012663b1461bc85ba7.tar.bz2
samba-0798d54b4fc28be881e2c4012663b1461bc85ba7.zip
r5195: most events don't need the time of the event, so save a gettimeofday() call
and just use timeval_current() when its actually needed (This used to be commit 236403cc4dc2924ed6a898acae0bb44cc1688dcc)
Diffstat (limited to 'source4/libcli/resolve')
-rw-r--r--source4/libcli/resolve/host.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/resolve/host.c b/source4/libcli/resolve/host.c
index 977c804a4a..4df8f27534 100644
--- a/source4/libcli/resolve/host.c
+++ b/source4/libcli/resolve/host.c
@@ -83,7 +83,7 @@ static void run_child(struct composite_context *c, int fd)
handle a read event on the pipe
*/
static void pipe_handler(struct event_context *ev, struct fd_event *fde,
- struct timeval t, uint16_t flags, void *private)
+ uint16_t flags, void *private)
{
struct composite_context *c = talloc_get_type(private, struct composite_context);
struct host_state *state = talloc_get_type(c->private, struct host_state);
@@ -160,7 +160,7 @@ struct composite_context *resolve_name_host_send(struct nbt_name *name,
/* we need to put the child in our event context so
we know when the gethostbyname() has finished */
- state->fde = event_add_fd(c->event_ctx, state, state->child_fd, EVENT_FD_READ,
+ state->fde = event_add_fd(c->event_ctx, c, state->child_fd, EVENT_FD_READ,
pipe_handler, c);
if (state->fde == NULL) {
close(fd[0]);