Commit 07e95008 authored by Martin Pool's avatar Martin Pool

Fix trace message which was missing a parameter.

Drop dead variable introduced in rsync+ patch.
parent c77cf822
...@@ -94,7 +94,6 @@ void send_files(struct file_list *flist,int f_out,int f_in) ...@@ -94,7 +94,6 @@ void send_files(struct file_list *flist,int f_out,int f_in)
extern struct stats stats; extern struct stats stats;
struct stats initial_stats; struct stats initial_stats;
extern int write_batch; /* dw */ extern int write_batch; /* dw */
int negative_one; /* dw */
extern int read_batch; /* dw */ extern int read_batch; /* dw */
int checksums_match; /* dw */ int checksums_match; /* dw */
int buff_len; /* dw */ int buff_len; /* dw */
...@@ -255,8 +254,9 @@ void send_files(struct file_list *flist,int f_out,int f_in) ...@@ -255,8 +254,9 @@ void send_files(struct file_list *flist,int f_out,int f_in)
} /* j=i */ } /* j=i */
} else { /* not checksum match */ } else { /* not checksum match */
rprintf(FINFO,"readbatch & checksums don't match\n"); rprintf (FINFO,"readbatch & checksums don't match\n");
rprintf(FINFO,"filename=%s is being skipped\n"); rprintf (FINFO,"filename=%s is being skipped\n",
fname);
continue; continue;
} }
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment