Commit 36e2ea60 authored by Wayne Davison's avatar Wayne Davison

Use new FNONE value when setting/comparing enum logcode vars.

parent f4164b73
...@@ -216,8 +216,10 @@ int hard_link_check(struct file_struct *file, int ndx, char *fname, ...@@ -216,8 +216,10 @@ int hard_link_check(struct file_struct *file, int ndx, char *fname,
continue; continue;
statret = 1; statret = 1;
st = &st3; st = &st3;
if (verbose < 2 || !stdout_format_has_i) if (verbose < 2 || !stdout_format_has_i) {
itemizing = code = 0; itemizing = 0;
code = FNONE;
}
break; break;
} }
if (!unchanged_file(cmpbuf, file, &st3)) if (!unchanged_file(cmpbuf, file, &st3))
...@@ -266,7 +268,7 @@ int hard_link_one(struct file_struct *file, int ndx, char *fname, ...@@ -266,7 +268,7 @@ int hard_link_one(struct file_struct *file, int ndx, char *fname,
ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0, ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0,
terse ? "" : toname); terse ? "" : toname);
} }
if (code && verbose && !terse) if (code != FNONE && verbose && !terse)
rprintf(code, "%s => %s\n", fname, toname); rprintf(code, "%s => %s\n", fname, toname);
return 0; return 0;
} }
......
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