From 9c513d678d24deee4ab912980e2520e2f09ccc9c Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 18 Jun 2004 16:55:12 +0000 Subject: [PATCH] Tweaked some comments. --- sender.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sender.c b/sender.c index d563df1c..3c14ddf5 100644 --- a/sender.c +++ b/sender.c @@ -170,7 +170,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) rprintf(FINFO, "send_files(%d, %s)\n", i, fname); if (dry_run) { - if (!am_server && verbose) { /* log transfer */ + if (!am_server && verbose) { rprintf(FINFO, "%s\n", fname+offset); } write_int(f_out, i); @@ -236,7 +236,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) if (verbose > 2 && !read_batch) rprintf(FINFO, "calling match_sums %s\n", fname); - if (!am_server && verbose) { /* log transfer */ + if (!am_server && verbose) { rprintf(FINFO, "%s\n", fname+offset); } @@ -268,17 +268,17 @@ void send_files(struct file_list *flist, int f_out, int f_in) write_buf(f_out, buff, buff_len); } } - } /* end while */ + } read_batch_delta_file(buff, MD4_SUM_LENGTH); write_buf(f_out, buff, MD4_SUM_LENGTH); - } /* j=i */ + } } else { /* not checksum match */ rprintf (FINFO, "readbatch & checksums don't match\n"); rprintf (FINFO, "filename=%s is being skipped\n", fname); continue; } - } else { + } else { /* not read_batch */ match_sums(f_out, s, mbuf, st.st_size); log_send(file, &initial_stats); } -- 2.34.1