df plugin: Match `spec_device' rather than `device' when matching the `Device' ignore...
authorLubos Stanek <lubek@users.sourceforge.net>
Tue, 21 Nov 2006 16:13:56 +0000 (17:13 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 21 Nov 2006 16:13:56 +0000 (17:13 +0100)
src/df.c

index 41f1d83..d327164 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -210,7 +210,10 @@ static void df_read (void)
                                        mnt_name[i] = '-';
                }
 
-               if (ignorelist_match (il_device, mnt_ptr->device))
+               if (ignorelist_match (il_device,
+                                       (mnt_ptr->spec_device != NULL)
+                                       ? mnt_ptr->spec_device
+                                       : mnt_ptr->device))
                        continue;
                if (ignorelist_match (il_mountpoint, mnt_ptr->dir))
                        continue;