diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_event_conn_job_sendfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_event_conn_job_sendfile.c b/src/nxt_event_conn_job_sendfile.c index 80a292a0..2ca6e421 100644 --- a/src/nxt_event_conn_job_sendfile.c +++ b/src/nxt_event_conn_job_sendfile.c @@ -109,7 +109,7 @@ nxt_event_conn_job_sendfile_handler(nxt_task_t *task, void *obj, void *data) b = jbs->out; do { - ret = c->io->sendbuf(c, b, jbs->limit); + ret = c->io->old_sendbuf(c, b, jbs->limit); if (ret == NXT_AGAIN) { break; |