diff options
author | Günther Deschner <gd@samba.org> | 2008-10-29 01:14:08 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-29 08:57:51 +0100 |
commit | 8e4c691c0aa406eedf52afb5cee33ff1540c0f8d (patch) | |
tree | 12e546568675427c295dfa5f94ff477c33529ef0 /source4/torture/rpc | |
parent | 8f52c33401f0cd12184335507271ae9141618679 (diff) | |
download | samba-8e4c691c0aa406eedf52afb5cee33ff1540c0f8d.tar.gz samba-8e4c691c0aa406eedf52afb5cee33ff1540c0f8d.tar.bz2 samba-8e4c691c0aa406eedf52afb5cee33ff1540c0f8d.zip |
s4-netlogon: merge netr_ServerAuthenticate{2,3} from s3 idl.
Guenther
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/netlogon.c | 6 | ||||
-rw-r--r-- | source4/torture/rpc/samba3rpc.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index 174022248d..44d92eb121 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -108,7 +108,7 @@ static bool test_SetupCredentials(struct dcerpc_pipe *p, struct torture_context a.in.secure_channel_type = SEC_CHAN_BDC; a.in.computer_name = machine_name; a.in.credentials = &credentials3; - a.out.credentials = &credentials3; + a.out.return_credentials = &credentials3; creds_client_init(creds, &credentials1, &credentials2, mach_password, &credentials3, @@ -173,7 +173,7 @@ bool test_SetupCredentials2(struct dcerpc_pipe *p, struct torture_context *tctx, a.in.negotiate_flags = &negotiate_flags; a.out.negotiate_flags = &negotiate_flags; a.in.credentials = &credentials3; - a.out.credentials = &credentials3; + a.out.return_credentials = &credentials3; creds_client_init(creds, &credentials1, &credentials2, mach_password, &credentials3, @@ -235,7 +235,7 @@ static bool test_SetupCredentials3(struct dcerpc_pipe *p, struct torture_context a.in.computer_name = machine_name; a.in.negotiate_flags = &negotiate_flags; a.in.credentials = &credentials3; - a.out.credentials = &credentials3; + a.out.return_credentials = &credentials3; a.out.negotiate_flags = &negotiate_flags; a.out.rid = &rid; diff --git a/source4/torture/rpc/samba3rpc.c b/source4/torture/rpc/samba3rpc.c index 5f8225cb33..220bc02351 100644 --- a/source4/torture/rpc/samba3rpc.c +++ b/source4/torture/rpc/samba3rpc.c @@ -946,7 +946,7 @@ static bool auth2(struct smbcli_state *cli, a.in.negotiate_flags = &negotiate_flags; a.out.negotiate_flags = &negotiate_flags; a.in.credentials = &netr_cred; - a.out.credentials = &netr_cred; + a.out.return_credentials = &netr_cred; status = dcerpc_netr_ServerAuthenticate2(net_pipe, mem_ctx, &a); if (!NT_STATUS_IS_OK(status)) { @@ -955,7 +955,7 @@ static bool auth2(struct smbcli_state *cli, goto done; } - if (!creds_client_check(creds_state, a.out.credentials)) { + if (!creds_client_check(creds_state, a.out.return_credentials)) { d_printf("creds_client_check failed\n"); goto done; } @@ -2081,7 +2081,7 @@ bool torture_samba3_rpc_randomauth2(struct torture_context *torture) a.in.negotiate_flags = &negotiate_flags; a.out.negotiate_flags = &negotiate_flags; a.in.credentials = &netr_cred; - a.out.credentials = &netr_cred; + a.out.return_credentials = &netr_cred; status = dcerpc_netr_ServerAuthenticate2(net_pipe, mem_ctx, &a); |