X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fdf.c;h=d327164ac601e3a98c59217122240b0e77b8ea4b;hb=c9596f6cf39a128c10764c3091e6a28186be2303;hp=41f1d83824d574e9552471cdc121b7f6e30ebd22;hpb=2cf8a7a60ef21a97cd80ab5597c792d949fe299a;p=collectd.git diff --git a/src/df.c b/src/df.c index 41f1d838..d327164a 100644 --- 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;