From 07e9500818c26d7cfd1a3e251f3fcf509f7b9967 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 15 Aug 2001 06:34:28 +0000 Subject: [PATCH] Fix trace message which was missing a parameter. Drop dead variable introduced in rsync+ patch. --- sender.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sender.c b/sender.c index 39bb2797..37927b41 100644 --- a/sender.c +++ b/sender.c @@ -94,7 +94,6 @@ void send_files(struct file_list *flist,int f_out,int f_in) extern struct stats stats; struct stats initial_stats; extern int write_batch; /* dw */ - int negative_one; /* dw */ extern int read_batch; /* dw */ int checksums_match; /* dw */ int buff_len; /* dw */ @@ -255,8 +254,9 @@ void send_files(struct file_list *flist,int f_out,int f_in) } /* j=i */ } else { /* not checksum match */ - rprintf(FINFO,"readbatch & checksums don't match\n"); - rprintf(FINFO,"filename=%s is being skipped\n"); + rprintf (FINFO,"readbatch & checksums don't match\n"); + rprintf (FINFO,"filename=%s is being skipped\n", + fname); continue; } } else { -- 2.34.1