The branch, v3-6-test has been updated
       via  15a423b s3:smbd:smb2: fix an assignment-instead-of-check bug 
conn_snum_used()
      from  6fdeb10 Fix bug #8729 - getpass regressions on Solaris/Illumos - 
3.6 and master.

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


- Log -----------------------------------------------------------------
commit 15a423bf373a8116a0de7a627eaaea3932541e88
Author: Michael Adam <[email protected]>
Date:   Wed Feb 1 14:25:12 2012 +0000

    s3:smbd:smb2: fix an assignment-instead-of-check bug conn_snum_used()
    
    Accidential "=" instead of "==".
    
    Autobuild-User: Michael Adam <[email protected]>
    Autobuild-Date: Wed Feb  1 17:10:15 CET 2012 on sn-devel-104
    (cherry picked from commit 6ba09e039e4efee33ce6b8cd9f919409656c2afb)
    
    Fix bug #8738 (SMB2 server will not release unused shares).

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

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


Changeset truncated at 500 lines:

diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c
index 833147b..8a96e88 100644
--- a/source3/smbd/conn.c
+++ b/source3/smbd/conn.c
@@ -67,7 +67,7 @@ bool conn_snum_used(int snum)
                        for (ptcon = sess->tcons.list; ptcon; ptcon = 
ptcon->next) {
                                if (ptcon->compat_conn &&
                                                ptcon->compat_conn->params &&
-                                               
(ptcon->compat_conn->params->service = snum)) {
+                                               
(ptcon->compat_conn->params->service == snum)) {
                                        return true;
                                }
                        }


-- 
Samba Shared Repository

Reply via email to