[SCM] Samba Shared Repository - branch master updated

Simo Sorce idra at samba.org
Thu Jul 1 16:34:02 MDT 2010


The branch, master has been updated
       via  3721161... s3:auth Fix switch statement referencing a uninitialized variable
      from  d1538ad... s3-nss_info: only include nss_info.h where needed.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3721161d90c835604f38d2f178fbcd8c5f708077
Author: Simo Sorce <idra at samba.org>
Date:   Thu Jul 1 17:47:46 2010 -0400

    s3:auth Fix switch statement referencing a uninitialized variable
    
    Looking at the original commit (9a747d500fad699038ecf75615c680a9fd9e4cc7)
    this seem the right solution.
    
    Andrew please check.

-----------------------------------------------------------------------

Summary of changes:
 source3/rpc_server/srv_pipe.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c
index 65251ec..3bc997e 100644
--- a/source3/rpc_server/srv_pipe.c
+++ b/source3/rpc_server/srv_pipe.c
@@ -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;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list