diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-02-27 10:59:14 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-01 16:11:53 +0100 |
commit | f995e596bbc0e1b44335b10bf23458ac7328188b (patch) | |
tree | 7bf6013e83f3d23e42bc309dff289de97dcdd96f /source4/libnet/libnet_lookup.c | |
parent | 5d33c6d4f9719e36a3ed0f6b54c4365324ff352c (diff) | |
download | samba-f995e596bbc0e1b44335b10bf23458ac7328188b.tar.gz |
s4:libnet: make use of explicit dcerpc_*_recv functions
metze
Diffstat (limited to 'source4/libnet/libnet_lookup.c')
-rw-r--r-- | source4/libnet/libnet_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_lookup.c b/source4/libnet/libnet_lookup.c index 4548864ba4a..7771a64e6dd 100644 --- a/source4/libnet/libnet_lookup.c +++ b/source4/libnet/libnet_lookup.c @@ -348,7 +348,7 @@ static void continue_name_found(struct rpc_request *req) c = talloc_get_type(req->async.private_data, struct composite_context); s = talloc_get_type(c->private_data, struct lookup_name_state); - c->status = dcerpc_ndr_request_recv(req); + c->status = dcerpc_lsa_LookupNames_recv(req); if (!composite_is_ok(c)) return; c->status = s->lookup.out.result; |