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/smbd/aio.c

    r206 r222  
    444444                 * client. */
    445445                if (errno == ECANCELED) {
    446                         srv_cancel_sign_response(aio_ex->mid);
     446                        srv_cancel_sign_response(aio_ex->mid, false);
    447447                        return 0;
    448448                }
     
    538538                 * client. */
    539539                if (errno == ECANCELED) {
    540                         srv_cancel_sign_response(aio_ex->mid);
     540                        srv_cancel_sign_response(aio_ex->mid, false);
    541541                        return 0;
    542542                }
     
    650650                        DEBUG(3,("process_aio_queue: Can't find record to "
    651651                                 "match mid %u.\n", (unsigned int)mid));
    652                         srv_cancel_sign_response(mid);
     652                        srv_cancel_sign_response(mid, false);
    653653                        continue;
    654654                }
     
    660660                        DEBUG( 3,( "process_aio_queue: file closed whilst "
    661661                                   "aio outstanding.\n"));
    662                         srv_cancel_sign_response(mid);
     662                        srv_cancel_sign_response(mid, false);
    663663                        continue;
    664664                }
Note: See TracChangeset for help on using the changeset viewer.