Signed-off-by: Karel Zak <kzak@redhat.com>
* If possible then don't depend on internal libc __SWORD_TYPE type.
*/
#ifdef __GNUC__
-typedef __typeof__( ((struct statfs *)0)->f_type ) ul_statfs_ftype_t;
+#define F_TYPE_EQUAL(a, b) (a == (__typeof__(a)) b)
#else
-typedef __SWORD_TYPE ul_statfs_ftype_t;
+#define F_TYPE_EQUAL(a, b) (a == (__SWORD_TYPE) b)
#endif
/*
if (pid <= 0) {
struct statfs stfs;
if (fstatfs(cfd, &stfs) == 0 &&
- (stfs.f_type == (ul_statfs_ftype_t) STATFS_RAMFS_MAGIC ||
- stfs.f_type == (ul_statfs_ftype_t) STATFS_TMPFS_MAGIC))
+ (F_TYPE_EQUAL(stfs.f_type, STATFS_RAMFS_MAGIC) ||
+ F_TYPE_EQUAL(stfs.f_type, STATFS_TMPFS_MAGIC)))
recursiveRemove(cfd);
else
warn(_("old root filesystem is not an initramfs"));