diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 17:40:49 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 17:40:49 +0100 |
commit | 19b98cf450220b742987e7f0599ae284e93f8e54 (patch) | |
tree | 8845d9bae7f99920dd01ba7e7c52ee4baecf02d9 /tests/mknode_slink.c | |
parent | 5dc3ab23d0552dc9460152f8a9089f25c8572d90 (diff) |
Add an explicit link count to the fstree nodes
Gets initialized to 2 for directories, 1 for all other types. The count
of the parent node is automatically incremented.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/mknode_slink.c')
-rw-r--r-- | tests/mknode_slink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/mknode_slink.c b/tests/mknode_slink.c index a520e70..bcb28f0 100644 --- a/tests/mknode_slink.c +++ b/tests/mknode_slink.c @@ -30,6 +30,7 @@ int main(void) assert(node->uid == sb.st_uid); assert(node->gid == sb.st_gid); assert(node->mode == (S_IFLNK | 0777)); + assert(node->link_count == 1); assert(node->parent == NULL); assert((char *)node->name >= (char *)node->payload); assert(node->data.target >= (char *)node->payload); @@ -42,6 +43,7 @@ int main(void) assert(node->uid == sb.st_uid); assert(node->gid == sb.st_gid); assert(node->mode == (S_IFLNK | 0777)); + assert(node->link_count == 1); assert(node->parent == NULL); assert((char *)node->name >= (char *)node->payload); assert(node->data.target >= (char *)node->payload); |