Changeset 161 for branches/samba-3.0/source/lib/sendfile.c
- Timestamp:
- Jan 21, 2009, 6:19:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/lib/sendfile.c
r1 r161 67 67 } while (nwritten == -1 && errno == EINTR); 68 68 if (nwritten == -1) { 69 if (errno == ENOSYS ) {69 if (errno == ENOSYS || errno == EINVAL) { 70 70 /* Ok - we're in a world of pain here. We just sent 71 71 * the header, but the sendfile failed. We have to … … 145 145 } while (nwritten == -1 && errno == EINTR); 146 146 if (nwritten == -1) { 147 if (errno == ENOSYS ) {147 if (errno == ENOSYS || errno == EINVAL) { 148 148 /* Ok - we're in a world of pain here. We just sent 149 149 * the header, but the sendfile failed. We have to
Note:
See TracChangeset
for help on using the changeset viewer.