Ignore:
Timestamp:
Jan 21, 2009, 6:19:11 PM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.34

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/lib/sendfile.c

    r1 r161  
    6767                } while (nwritten == -1 && errno == EINTR);
    6868                if (nwritten == -1) {
    69                         if (errno == ENOSYS) {
     69                        if (errno == ENOSYS || errno == EINVAL) {
    7070                                /* Ok - we're in a world of pain here. We just sent
    7171                                 * the header, but the sendfile failed. We have to
     
    145145                } while (nwritten == -1 && errno == EINTR);
    146146                if (nwritten == -1) {
    147                         if (errno == ENOSYS) {
     147                        if (errno == ENOSYS || errno == EINVAL) {
    148148                                /* Ok - we're in a world of pain here. We just sent
    149149                                 * the header, but the sendfile failed. We have to
Note: See TracChangeset for help on using the changeset viewer.