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/trans2.c

    r733 r736  
    862862                reply_outbuf(req, 10, total_sent_thistime + alignment_offset
    863863                             + data_alignment_offset);
    864 
    865                 /*
    866                  * We might have SMBtrans2s in req which was transferred to
    867                  * the outbuf, fix that.
    868                  */
    869                 SCVAL(req->outbuf, smb_com, SMBtrans2);
    870864
    871865                /* Set total params and data to be sent */
     
    85858579        show_msg((char *)req->inbuf);
    85868580
     8581        /* Windows clients expect all replies to
     8582           a transact secondary (SMBtranss2 0x33)
     8583           to have a command code of transact
     8584           (SMBtrans2 0x32). See bug #8989
     8585           and also [MS-CIFS] section 2.2.4.47.2
     8586           for details.
     8587        */
     8588        req->cmd = SMBtrans2;
     8589
    85878590        if (req->wct < 8) {
    85888591                reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
Note: See TracChangeset for help on using the changeset viewer.