Changeset 222 for branches/samba-3.3.x/source/libsmb/smb_signing.c
- Timestamp:
- May 24, 2009, 7:45:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/libsmb/smb_signing.c
r206 r222 866 866 ************************************************************/ 867 867 868 void srv_cancel_sign_response(uint16 mid )868 void srv_cancel_sign_response(uint16 mid, bool cancel) 869 869 { 870 870 struct smb_basic_signing_context *data; … … 885 885 886 886 /* 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 } 888 890 } 889 891
Note:
See TracChangeset
for help on using the changeset viewer.