diff options
author | Gerald Carter <jerry@samba.org> | 2006-03-15 15:38:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:30 -0500 |
commit | 36f622acea8ffa59233bc1b96c6a38f1c29623a8 (patch) | |
tree | 802735c522b2dd4670aa0bef6e4657173894b8e9 | |
parent | a19949821399543a9d0924333d5efb4a8695f06f (diff) | |
download | samba-36f622acea8ffa59233bc1b96c6a38f1c29623a8.tar.gz samba-36f622acea8ffa59233bc1b96c6a38f1c29623a8.tar.bz2 samba-36f622acea8ffa59233bc1b96c6a38f1c29623a8.zip |
r14450: Fix more get_md4pw() breakage caused by missing "breaks"
in the switch statement which matched the schannel type
against the account type.
(This used to be commit 57c705ea63381ed9ab09145b4f57a736931fa6ca)
-rw-r--r-- | source3/rpc_server/srv_netlog_nt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/rpc_server/srv_netlog_nt.c b/source3/rpc_server/srv_netlog_nt.c index cafef5ab7f..1a7ab4ef53 100644 --- a/source3/rpc_server/srv_netlog_nt.c +++ b/source3/rpc_server/srv_netlog_nt.c @@ -268,6 +268,7 @@ static NTSTATUS get_md4pw(char *md4pw, char *mach_acct, uint16 sec_chan_type) TALLOC_FREE(sampass); return NT_STATUS_NO_TRUST_SAM_ACCOUNT; } + break; case SEC_CHAN_WKSTA: if (!(acct_ctrl & ACB_WSTRUST)) { DEBUG(0,("get_md4pw: Workstation %s: WORKSTATION secure channel requested " @@ -275,6 +276,7 @@ static NTSTATUS get_md4pw(char *md4pw, char *mach_acct, uint16 sec_chan_type) TALLOC_FREE(sampass); return NT_STATUS_NO_TRUST_SAM_ACCOUNT; } + break; case SEC_CHAN_DOMAIN: if (!(acct_ctrl & ACB_DOMTRUST)) { DEBUG(0,("get_md4pw: Workstation %s: DOMAIN secure channel requested " @@ -282,6 +284,7 @@ static NTSTATUS get_md4pw(char *md4pw, char *mach_acct, uint16 sec_chan_type) TALLOC_FREE(sampass); return NT_STATUS_NO_TRUST_SAM_ACCOUNT; } + break; default: break; } |