Remove obsoleted useless flag.

This commit is contained in:
Gleb Smirnoff 2017-12-28 21:23:12 -08:00 committed by Justin Maggard
parent 7ba9e52fc8
commit 184607cb56

View File

@ -51,7 +51,7 @@ int sys_sendfile(int sock, int sendfd, off_t *offset, off_t len)
int ret;
size_t nbytes = len;
ret = sendfile(sendfd, sock, *offset, nbytes, NULL, &len, SF_MNOWAIT);
ret = sendfile(sendfd, sock, *offset, nbytes, NULL, &len, 0);
*offset += len;
return ret;