From c4073a27c555aeceac87a3b02a83141cde641a1e Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 17 Apr 2013 18:58:06 +0200 Subject: fixup for cddf148028f52 Instead of making a type up, just use __SWORD_TYPE, after reading statfs(2). Too bad, this does not fix s390x because __SWORD_TYPE is (long int) and the kernel uses (int) to fill in the field!!!!!! --- src/journal/sd-journal.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/journal') diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 6d0f363faf..88777cbcb9 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -1248,11 +1248,11 @@ static void check_network(sd_journal *j, int fd) { return; j->on_network = - (unsigned long) sfs.f_type == CIFS_MAGIC_NUMBER || - (unsigned long) sfs.f_type == CODA_SUPER_MAGIC || - (unsigned long) sfs.f_type == NCP_SUPER_MAGIC || - (unsigned long) sfs.f_type == NFS_SUPER_MAGIC || - (unsigned long) sfs.f_type == SMB_SUPER_MAGIC; + (unsigned __SWORD_TYPE) sfs.f_type == CIFS_MAGIC_NUMBER || + (unsigned __SWORD_TYPE) sfs.f_type == CODA_SUPER_MAGIC || + (unsigned __SWORD_TYPE) sfs.f_type == NCP_SUPER_MAGIC || + (unsigned __SWORD_TYPE) sfs.f_type == NFS_SUPER_MAGIC || + (unsigned __SWORD_TYPE) sfs.f_type == SMB_SUPER_MAGIC; } static int add_file(sd_journal *j, const char *prefix, const char *filename) { -- cgit v1.2.3-54-g00ecf