diff options
Diffstat (limited to 'usr.bin/rsync/io.c')
-rw-r--r-- | usr.bin/rsync/io.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/rsync/io.c b/usr.bin/rsync/io.c index 018798bed83..edd413ab2c4 100644 --- a/usr.bin/rsync/io.c +++ b/usr.bin/rsync/io.c @@ -1,4 +1,4 @@ -/* $Id: io.c,v 1.9 2019/02/17 16:34:04 deraadt Exp $ */ +/* $Id: io.c,v 1.10 2019/02/18 21:34:54 benno Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -304,8 +304,7 @@ io_read_flush(struct sess *sess, int fd) } else if (sess->mplex_read_remain == 0) return 1; - if (!io_read_blocking(sess, fd, - mpbuf, sess->mplex_read_remain)) { + if (!io_read_blocking(sess, fd, mpbuf, sess->mplex_read_remain)) { ERRX1(sess, "io_read_blocking"); return 0; } |