From: Lubos Stanek Date: Tue, 21 Nov 2006 16:13:56 +0000 (+0100) Subject: df plugin: Match `spec_device' rather than `device' when matching the `Device' ignore... X-Git-Tag: collectd-3.11.0~43 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ddb911735889d9f2e087f079943f3b883f6251b9;p=collectd.git df plugin: Match `spec_device' rather than `device' when matching the `Device' ignorelist. --- 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;