From: Eric Biggers Date: Mon, 13 Jan 2014 05:26:02 +0000 (-0600) Subject: Fix references to hardlink.c X-Git-Tag: v1.6.1~59 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=c2be2a2774b80732021e47268769e384d5e263e7 Fix references to hardlink.c --- diff --git a/include/wimlib/dentry.h b/include/wimlib/dentry.h index fa35869b..6597e777 100644 --- a/include/wimlib/dentry.h +++ b/include/wimlib/dentry.h @@ -44,7 +44,7 @@ struct wim_security_data; * that Microsoft may have fixed this problem, since I've only noticed it in the * 'install.wim' for Windows 7). For those dentries, we have to use the * conflicting fields to split up the hard link groups. (See - * dentry_tree_fix_inodes() in hardlink.c). + * dentry_tree_fix_inodes() in inode_fixup.c.) */ struct wim_dentry { /* Pointer to the inode for this dentry. This will contain some diff --git a/include/wimlib/inode.h b/include/wimlib/inode.h index 468bdbac..5d04427f 100644 --- a/include/wimlib/inode.h +++ b/include/wimlib/inode.h @@ -61,10 +61,10 @@ struct wim_inode { /* Field to place this inode into a list. */ union { - /* Hash list node- used in hardlink.c when the inodes are placed - * into a hash table keyed by inode number and optionally device - * number, in order to detect dentries that are aliases for the - * same inode. */ + /* Hash list node- used in inode_fixup.c when the inodes are + * placed into a hash table keyed by inode number and optionally + * device number, in order to detect dentries that are aliases + * for the same inode. */ struct hlist_node i_hlist; /* Normal list node- used to connect all the inodes of a WIM image