Ignore:
Timestamp:
May 24, 2009, 7:45:16 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/libsmb/smb_signing.c

    r206 r222  
    866866************************************************************/
    867867
    868 void srv_cancel_sign_response(uint16 mid)
     868void srv_cancel_sign_response(uint16 mid, bool cancel)
    869869{
    870870        struct smb_basic_signing_context *data;
     
    885885
    886886        /* cancel doesn't send a reply so doesn't burn a sequence number. */
    887         data->send_seq_num -= 1;
     887        if (cancel) {
     888                data->send_seq_num -= 1;
     889        }
    888890}
    889891
Note: See TracChangeset for help on using the changeset viewer.