summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_lookup.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/libnet/libnet_lookup.c')
-rw-r--r--source4/libnet/libnet_lookup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/libnet/libnet_lookup.c b/source4/libnet/libnet_lookup.c
index c6dc6d0741..c517213652 100644
--- a/source4/libnet/libnet_lookup.c
+++ b/source4/libnet/libnet_lookup.c
@@ -35,7 +35,7 @@
struct lookup_state {
struct composite_context *resolve_ctx;
struct nbt_name hostname;
- char address[16];
+ const char **address;
};
@@ -61,6 +61,7 @@ struct composite_context *libnet_Lookup_send(struct libnet_Lookup *io)
s->hostname.name = talloc_strdup(s, io->in.hostname);
s->hostname.type = io->in.type;
s->hostname.scope = NULL;
+ s->address = io->out.address;
c->private = s;
c->state = SMBCLI_REQUEST_SEND;
@@ -84,7 +85,7 @@ NTSTATUS libnet_Lookup_recv(struct composite_context *c, TALLOC_CTX *mem_ctx,
s = talloc_get_type(c->private, struct lookup_state);
- status = resolve_name_recv(s->resolve_ctx, mem_ctx, io->out.address);
+ status = resolve_name_recv(s->resolve_ctx, mem_ctx, s->address);
return status;
}