Ignore:
Timestamp:
May 13, 2014, 11:39:04 AM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update trunk to 3.6.23

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/smbd/smb2_tcon.c

    r751 r862  
    208208        }
    209209
     210        /* Don't allow connection if encryption is required. */
     211        if (lp_smb_encrypt(snum) == Required) {
     212                DEBUG(0,("Connection refused on share %s as encryption is"
     213                        " required on this share and SMB2 does not support"
     214                        " this.\n",
     215                        lp_servicename(snum)));
     216                return NT_STATUS_ACCESS_DENIED;
     217        }
     218
    210219        /* create a new tcon as child of the session */
    211220        tcon = talloc_zero(req->session, struct smbd_smb2_tcon);
Note: See TracChangeset for help on using the changeset viewer.