summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-09-22 19:44:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:45 -0500
commitf59d4351272233727511b17ba7223a1be90f3ec6 (patch)
treeb0e2b28a91ef632bbadfec9327f0130f8f1833cc /source4
parentfdeff0fa50773a6bbaa22d7ff5bcd3766443a8f9 (diff)
downloadsamba-f59d4351272233727511b17ba7223a1be90f3ec6.tar.gz
samba-f59d4351272233727511b17ba7223a1be90f3ec6.tar.bz2
samba-f59d4351272233727511b17ba7223a1be90f3ec6.zip
r10435: fill in the reference to the generic wbsrv_call in the wbsrv_samba3_call,
so that async function can use it. metze (This used to be commit 72302b5d3dc3657caf885d40696495b6c8aabefb)
Diffstat (limited to 'source4')
-rw-r--r--source4/winbind/wb_samba3_protocol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/winbind/wb_samba3_protocol.c b/source4/winbind/wb_samba3_protocol.c
index f9812403f1..bff39ab482 100644
--- a/source4/winbind/wb_samba3_protocol.c
+++ b/source4/winbind/wb_samba3_protocol.c
@@ -50,6 +50,7 @@ NTSTATUS wbsrv_samba3_pull_request(DATA_BLOB blob, TALLOC_CTX *mem_ctx, struct w
s3_call = talloc_zero(call, struct wbsrv_samba3_call);
NT_STATUS_HAVE_NO_MEMORY(s3_call);
+ s3call->call = call;
/* the packet layout is the same as the in memory layout of the request, so just copy it */
memcpy(&s3_call->request, blob.data, sizeof(s3_call->request));