diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-02-16 17:59:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-02-16 17:59:34 +0000 |
commit | 9874988c4cf497aac492445d1bfc38ff9b7db245 (patch) | |
tree | 51921a17c667561a51bdfc3e3634f27ae79c6d78 /usr.bin/rsync/sender.c | |
parent | 2d406f7493912315994150a058a8721d40db7b4d (diff) |
nasty ugly invisible spaces
Diffstat (limited to 'usr.bin/rsync/sender.c')
-rw-r--r-- | usr.bin/rsync/sender.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/rsync/sender.c b/usr.bin/rsync/sender.c index 62ca1769014..f60dbe55371 100644 --- a/usr.bin/rsync/sender.c +++ b/usr.bin/rsync/sender.c @@ -1,4 +1,4 @@ -/* $Id: sender.c,v 1.10 2019/02/16 16:59:34 florian Exp $ */ +/* $Id: sender.c,v 1.11 2019/02/16 17:59:33 deraadt Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -34,7 +34,7 @@ * A request from the receiver to download updated file data. */ struct send_dl { - int32_t idx; /* index in our file list */ + int32_t idx; /* index in our file list */ struct blkset *blks; /* the sender's block information */ TAILQ_ENTRY(send_dl) entries; }; @@ -103,7 +103,7 @@ send_dl_enqueue(struct sess *sess, struct send_dlq *q, int32_t idx, const struct flist *fl, size_t flsz, int fd) { struct send_dl *s; - + /* End-of-phase marker. */ if (idx == -1) { @@ -118,7 +118,7 @@ send_dl_enqueue(struct sess *sess, struct send_dlq *q, } /* Validate the index. */ - + if (idx < 0 || (uint32_t)idx >= flsz) { ERRX(sess, "file index out of bounds: invalid %" PRId32 " out of %zu", idx, flsz); @@ -586,7 +586,7 @@ rsync_sender(struct sess *sess, int fdin, pfd[1].fd = fdout; continue; } - + /* * Non-blocking open of file. * This will be picked up in the state machine |