Commit 1aa343e8 authored by Wayne Davison's avatar Wayne Davison

Make last fix even better.

parent 5ed353a8
...@@ -345,9 +345,9 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname, ...@@ -345,9 +345,9 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname,
|| prev_st.st_ino != alt_sx.st.st_ino) || prev_st.st_ino != alt_sx.st.st_ino)
continue; continue;
statret = 1; statret = 1;
if (verbose < 2 || !stdout_format_has_i) { if (stdout_format_has_i == 0
if (stdout_format_has_i < 2) || (verbose < 2 && stdout_format_has_i < 2)) {
itemizing = 0; itemizing = 0;
code = FNONE; code = FNONE;
if (verbose > 1 && maybe_ATTRS_REPORT) if (verbose > 1 && maybe_ATTRS_REPORT)
rprintf(FCLIENT, "%s is uptodate\n", fname); rprintf(FCLIENT, "%s is uptodate\n", fname);
......
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