From 8a4fd3c97157ef71a25b6a28585faa53fe8e47df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Thu, 9 Dec 2004 15:57:44 +0000 Subject: [PATCH] Ignores unkown file system type. * mountlist.c: (ignore_mount_entry): Ignores unkown file system type. --- sysdeps/common/ChangeLog | 4 ++++ sysdeps/common/mountlist.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/sysdeps/common/ChangeLog b/sysdeps/common/ChangeLog index db21dfdb..48c01e96 100644 --- a/sysdeps/common/ChangeLog +++ b/sysdeps/common/ChangeLog @@ -1,3 +1,7 @@ +2004-12-09 Benoît Dejean + + * mountlist.c: (ignore_mount_entry): Ignores "unkown" file system type. + 2004-09-24 Benoît Dejean * fsusage.c: (glibtop_get_fsusage_s): Fixed .block_size on Solaris. diff --git a/sysdeps/common/mountlist.c b/sysdeps/common/mountlist.c index 0dc3dc73..30ae0b6b 100644 --- a/sysdeps/common/mountlist.c +++ b/sysdeps/common/mountlist.c @@ -547,7 +547,8 @@ static gboolean ignore_mount_entry(const struct mount_entry *me) "binfmt_misc", "supermount", "mntfs", - "openpromfs" + "openpromfs", + "unknown" }; const char (*i)[12] = &ignored[0];