Changeset 222 for branches/samba-3.3.x/source/smbd/aio.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/smbd/aio.c
r206 r222 444 444 * client. */ 445 445 if (errno == ECANCELED) { 446 srv_cancel_sign_response(aio_ex->mid );446 srv_cancel_sign_response(aio_ex->mid, false); 447 447 return 0; 448 448 } … … 538 538 * client. */ 539 539 if (errno == ECANCELED) { 540 srv_cancel_sign_response(aio_ex->mid );540 srv_cancel_sign_response(aio_ex->mid, false); 541 541 return 0; 542 542 } … … 650 650 DEBUG(3,("process_aio_queue: Can't find record to " 651 651 "match mid %u.\n", (unsigned int)mid)); 652 srv_cancel_sign_response(mid );652 srv_cancel_sign_response(mid, false); 653 653 continue; 654 654 } … … 660 660 DEBUG( 3,( "process_aio_queue: file closed whilst " 661 661 "aio outstanding.\n")); 662 srv_cancel_sign_response(mid );662 srv_cancel_sign_response(mid, false); 663 663 continue; 664 664 }
Note:
See TracChangeset
for help on using the changeset viewer.