From 58c5c245555dee2e49fb8a1c21563e6e084177a2 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 23 Jul 2004 16:59:22 +0000 Subject: [PATCH] Added a comment. --- main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 715af860..db37e0f6 100644 --- a/main.c +++ b/main.c @@ -151,6 +151,8 @@ static void report(int f) /* this is the client */ if (!am_sender) { + /* Read the first two in opposite order because the meaning of + * read/write swaps when switching from sender to receiver. */ total_written = read_longint(f); total_read = read_longint(f); stats.total_size = read_longint(f); @@ -461,9 +463,8 @@ static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name) if (!delete_after) { /* I moved this here from recv_files() to prevent a race condition */ - if (recurse && delete_mode && !local_name && flist->count>0) { + if (recurse && delete_mode && !local_name && flist->count > 0) delete_files(flist); - } } if (fd_pair(error_pipe) < 0) { -- 2.34.1