1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s3:auth Fix switch statement referencing a uninitialized variable

Looking at the original commit (9a747d500f)
this seem the right solution.

Andrew please check.
This commit is contained in:
Simo Sorce 2010-07-01 17:47:46 -04:00
parent d1538add73
commit 3721161d90

View File

@ -1139,7 +1139,7 @@ static bool pipe_spnego_auth_bind_negotiate(pipes_struct *p, prs_struct *rpc_in_
goto err;
}
switch (auth_info.auth_level) {
switch (pauth_info->auth_level) {
case DCERPC_AUTH_LEVEL_INTEGRITY:
auth_ntlmssp_want_sign(a);
break;