diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-08-26 00:11:19 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-08-26 00:11:22 +0200 |
commit | 094b1430b880003c384326939330a33208105409 (patch) | |
tree | ae9a2b3651853c4c11f3fad1b68f0eb66591bfa2 /ext2fs | |
parent | 9f2aee9074b4568dda5432fc56b5dd1067f9c358 (diff) | |
download | hurd-094b1430b880003c384326939330a33208105409.tar.gz hurd-094b1430b880003c384326939330a33208105409.tar.bz2 hurd-094b1430b880003c384326939330a33208105409.zip |
ext2fs: Fix masking out translators bits
We need to mask out before shifting the bits.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/inode.c b/ext2fs/inode.c index bcb1ffed..4ccd6b36 100644 --- a/ext2fs/inode.c +++ b/ext2fs/inode.c @@ -399,7 +399,7 @@ write_node (struct node *np) if (sblock->s_creator_os == htole32 (EXT2_OS_HURD)) /* If this is a hurd-compatible filesystem, write the high bits too. */ { - di->i_mode_high = htole16 ((st->st_mode >> 16) & 0xffff & ~S_ITRANS); + di->i_mode_high = htole16 (((st->st_mode & ~S_ITRANS) >> 16) & 0xffff); di->i_uid_high = htole16 (st->st_uid >> 16); di->i_gid_high = htole16 (st->st_gid >> 16); di->i_author = htole32 (st->st_author); |