From b7d4d28bb3f45290bf7d747b5fa54c0e3ea4d181 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 9 Mar 2005 18:54:06 +0000 Subject: [PATCH] When itemizing, we now set ITEM_LOCAL_CHANGE and ITEM_XNAME_FOLLOWS. --- hlink.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hlink.c b/hlink.c index 487978e2..4e75dc69 100644 --- a/hlink.c +++ b/hlink.c @@ -168,7 +168,8 @@ int hard_link_one(struct file_struct *file, int ndx, char *fname, } if (itemizing) { - itemize(file, ndx, statret, st, ITEM_HARD_LINKED, + itemize(file, ndx, statret, st, + ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0, terse ? "" : toname); } if (code && verbose && !terse) { @@ -207,8 +208,9 @@ void hard_link_cluster(struct file_struct *file, int master, int itemizing, if (st2.st_dev == st1.st_dev && st2.st_ino == st1.st_ino) { if (itemizing) { - itemize(file, ndx, statret, - &st2, ITEM_HARD_LINKED, ""); + itemize(file, ndx, statret, &st2, + ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, + 0, ""); } continue; } -- 2.34.1