2
0
Fork 0

Fix typos in sendfile (again)

personal/stbuehler/wip
Stefan Bühler 2008-11-17 21:50:03 +01:00
parent ec16ebea3c
commit 06225998c6
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ static network_sendfile_result lighty_sendfile(vrequest *vr, int fd, int filefd,
case EINTR:
if (r) {
*wrote = r;
return NSR_SUCCSES;
return NSR_SUCCESS;
}
break; /* try again */
case EINVAL:
@ -129,7 +129,7 @@ static network_sendfile_result lighty_sendfile(vrequest *vr, int fd, int filefd,
case EINTR:
if (bytes) {
*wrote = bytes;
return NSR_SUCCSES;
return NSR_SUCCESS;
}
break; /* try again */
case ENOTSUP: