When itemizing, we now set ITEM_LOCAL_CHANGE and ITEM_XNAME_FOLLOWS.
authorWayne Davison <wayned@samba.org>
Wed, 9 Mar 2005 18:54:06 +0000 (18:54 +0000)
committerWayne Davison <wayned@samba.org>
Wed, 9 Mar 2005 18:54:06 +0000 (18:54 +0000)
hlink.c

diff --git a/hlink.c b/hlink.c
index 487978e..4e75dc6 100644 (file)
--- 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;
                        }