From: Matthias Clasen Date: Fri, 3 Apr 2009 04:23:54 +0000 (-0400) Subject: Don't lie about ext4 filesystems X-Git-Tag: 2.20.1~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25ff8ee7486c7bdf1612d3554fc1d7d91daedfa6;p=platform%2Fupstream%2Fglib.git Don't lie about ext4 filesystems When returning a filesystem type id, say "ext3/ext4" instead of "ext3", since both use the same superblock magic, so we can't discriminate them without more work. --- diff --git a/gio/glocalfile.c b/gio/glocalfile.c index 098f76e..efb8417 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -662,7 +662,7 @@ get_fs_type (long f_type) case 0xEF51: return "ext2"; case 0xEF53: - return "ext3"; + return "ext3/ext4"; case 0x4244: return "hfs"; case 0xF995E849: