From: Lubos Stanek Date: Tue, 21 Nov 2006 16:00:54 +0000 (+0100) Subject: df plugin: Fix a nasty bug in the config routine. It effectively disabled the `Ignore... X-Git-Tag: collectd-3.11.0~45 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=2cf8a7a60ef21a97cd80ab5597c792d949fe299a;hp=e0f0fe11908ddebf895bc0c8b00d6d383b53c0e2;p=collectd.git df plugin: Fix a nasty bug in the config routine. It effectively disabled the `IgnoreSelected' option. --- diff --git a/src/df.c b/src/df.c index 8eed1f54..41f1d838 100644 --- a/src/df.c +++ b/src/df.c @@ -125,6 +125,7 @@ static int df_config (char *key, char *value) ignorelist_set_invert (il_mountpoint, 1); ignorelist_set_invert (il_fstype, 1); } + return (0); } return (-1);