diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-01 22:13:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-01 22:13:11 +0000 |
commit | 8b30b0071cb7668f49b2ea5951d1180bf90371e3 (patch) | |
tree | 95fd324add9a362e7f25c7bec06ec28af1e95841 /source4/librpc/idl | |
parent | f9e2a8af391f8ecb7cf6aa2d017898503d16985f (diff) | |
download | samba-8b30b0071cb7668f49b2ea5951d1180bf90371e3.tar.gz samba-8b30b0071cb7668f49b2ea5951d1180bf90371e3.tar.bz2 samba-8b30b0071cb7668f49b2ea5951d1180bf90371e3.zip |
* another small API change in the credentials code
* don't use static variables in the smbdes code
(This used to be commit e6e09064646c347169852fa162c72fc0542c6d5c)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 38df1c48da..efdbed34be 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -71,8 +71,8 @@ interface netlogon typedef [flag(NDR_PAHEX)] struct { uint8 session_key[8]; uint32 sequence; - netr_Credential client_cred; - netr_Credential server_cred; + netr_Credential cred1; + netr_Credential cred2; } netr_CredentialState; typedef struct { @@ -229,11 +229,11 @@ interface netlogon [out] uint32 authoritative ); - WERROR netr_LogonSamLogoff( + NTSTATUS netr_LogonSamLogoff( [in] unistr *server_name, [in] unistr *computer_name, - [in] netr_Authenticator credential, - [in] netr_Authenticator return_authenticator, + [in] netr_Authenticator *credential, + [in][out] netr_Authenticator *return_authenticator, [in] uint16 logon_level, [in] [switch_is(logon_level)] netr_LogonLevel logon ); |