fusermount: Exclude UFSD from whitelist for 32-bit builds
authorBernd Schubert <bschubert@ddn.com>
Sun, 16 Feb 2025 21:40:41 +0000 (22:40 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
The UFSD super magic is larger than 32-bit - I don't
know if truncating to 32-bit would work - we just
exclude it for now.

Signed-off-by: Bernd Schubert <bschubert@ddn.com>
util/fusermount.c

index b87d8bb70703e7986c627b40a2c826ccbdb11ac4..683c5496f4014f74fd38e6ca152899737d1feb02 100644 (file)
@@ -1141,7 +1141,9 @@ static int check_perm(const char **mntp, struct stat *stbuf, int *mountpoint_fd)
                0x73717368 /* SQUASHFS_MAGIC */,
                0x01021994 /* TMPFS_MAGIC */,
                0x24051905 /* UBIFS_SUPER_MAGIC */,
+#if __SIZEOF_LONG__ > 4
                0x736675005346544e /* UFSD */,
+#endif
                0x58465342 /* XFS_SB_MAGIC */,
                0x2FC12FC1 /* ZFS_SUPER_MAGIC */,
                0x858458f6 /* RAMFS_MAGIC */,