Ignore:
Timestamp:
Nov 12, 2012, 5:38:52 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: update branche to 3.5.16

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/source3/smbd/nttrans.c

    r733 r736  
    133133                             total_sent_thistime + alignment_offset
    134134                             + data_alignment_offset);
    135 
    136                 /*
    137                  * We might have had SMBnttranss in req->inbuf, fix that.
    138                  */
    139                 SCVAL(req->outbuf, smb_com, SMBnttrans);
    140135
    141136                /*
     
    30693064        show_msg((char *)req->inbuf);
    30703065
     3066        /* Windows clients expect all replies to
     3067           an NT transact secondary (SMBnttranss 0xA1)
     3068           to have a command code of NT transact
     3069           (SMBnttrans 0xA0). See bug #8989 for details. */
     3070        req->cmd = SMBnttrans;
     3071
    30713072        if (req->wct < 18) {
    30723073                reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
Note: See TracChangeset for help on using the changeset viewer.