The branch, v3-3-test has been updated
       via  076e24c... s3:smbd: Fix bug 6690, wrong error check
      from  c6d4855... s3:winbindd_cm: don't invalidate the whole connection 
when just samr gave ACCCESS_DENIED

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


- Log -----------------------------------------------------------------
commit 076e24cbaf9009f744978b03ddf6ef593d90e9c1
Author: Andrew Klosterman <andrew.klosterman+samba_bugzi...@gmail.com>
Date:   Tue Sep 8 17:38:37 2009 +0200

    s3:smbd: Fix bug 6690, wrong error check

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

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


Changeset truncated at 500 lines:

diff --git a/source/profile/profile.c b/source/profile/profile.c
index bdbd805..f5dccf4 100644
--- a/source/profile/profile.c
+++ b/source/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

Reply via email to