[SCM] Samba Shared Repository - branch v3-4-test updated

Karolin Seeger kseeger at samba.org
Thu Oct 8 01:43:59 MDT 2009


The branch, v3-4-test has been updated
       via  f1f6df1... s3:smbd: Fix bug 6690, wrong error check
      from  722ba56... s3:winbindd: only notify the client when we exist, if the connection isn't dead already

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-4-test


- Log -----------------------------------------------------------------
commit f1f6df1747164f3f57adc9c6912b27592baa0802
Author: Andrew Klosterman <andrew.klosterman+samba_bugzilla at gmail.com>
Date:   Tue Sep 8 17:38:37 2009 +0200

    s3:smbd: Fix bug 6690, wrong error check

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

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


Changeset truncated at 500 lines:

diff --git a/source3/profile/profile.c b/source3/profile/profile.c
index 6d2d5ae..61b0a7c 100644
--- a/source3/profile/profile.c
+++ b/source3/profile/profile.c
@@ -227,7 +227,7 @@ bool profile_setup(struct messaging_context *msg_ctx, bool rdonly)
 	
 	profile_h = (struct profile_header *)shmat(shm_id, 0, 
 						   read_only?SHM_RDONLY:0);
-	if ((long)profile_p == -1) {
+	if ((long)profile_h == -1) {
 		DEBUG(0,("Can't attach to IPC area. Error was %s\n", 
 			 strerror(errno)));
 		return False;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list