summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_schannel.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-05-16 14:52:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:52:30 -0500
commit40cd2d778093d7799b27b6beb37166d8a53f965c (patch)
treedf28b80a71dd74da23820d3989e322bcba56c580 /source4/librpc/rpc/dcerpc_schannel.c
parent3e5335063a15dda4c21baab0961d766f30b21d84 (diff)
downloadsamba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.gz
samba-40cd2d778093d7799b27b6beb37166d8a53f965c.tar.bz2
samba-40cd2d778093d7799b27b6beb37166d8a53f965c.zip
r22944: fix bug #4618:
rename private -> private_data metze (This used to be commit 58551f2f28fce8f1fcd04736c47ecd7458f32ea2)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_schannel.c')
-rw-r--r--source4/librpc/rpc/dcerpc_schannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c
index d5a83b1bfa..15a0159be8 100644
--- a/source4/librpc/rpc/dcerpc_schannel.c
+++ b/source4/librpc/rpc/dcerpc_schannel.c
@@ -156,7 +156,7 @@ static void continue_srv_challenge(struct rpc_request *req)
struct schannel_key_state *s;
struct rpc_request *srv_auth2_req;
- c = talloc_get_type(req->async.private, struct composite_context);
+ c = talloc_get_type(req->async.private_data, struct composite_context);
s = talloc_get_type(c->private_data, struct schannel_key_state);
/* receive rpc request result - netlogon challenge */
@@ -199,7 +199,7 @@ static void continue_srv_auth2(struct rpc_request *req)
struct composite_context *c;
struct schannel_key_state *s;
- c = talloc_get_type(req->async.private, struct composite_context);
+ c = talloc_get_type(req->async.private_data, struct composite_context);
s = talloc_get_type(c->private_data, struct schannel_key_state);
/* receive rpc request result - auth2 credentials */