Changeset 232 for branches/samba-3.2.x/source/lib/sendfile.c
- Timestamp:
- May 27, 2009, 9:09:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/lib/sendfile.c
r133 r232 66 66 } while (nwritten == -1 && errno == EINTR); 67 67 if (nwritten == -1) { 68 if (errno == ENOSYS ) {68 if (errno == ENOSYS || errno == EINVAL) { 69 69 /* Ok - we're in a world of pain here. We just sent 70 70 * the header, but the sendfile failed. We have to … … 144 144 } while (nwritten == -1 && errno == EINTR); 145 145 if (nwritten == -1) { 146 if (errno == ENOSYS ) {146 if (errno == ENOSYS || errno == EINVAL) { 147 147 /* Ok - we're in a world of pain here. We just sent 148 148 * the header, but the sendfile failed. We have to
Note:
See TracChangeset
for help on using the changeset viewer.