X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ftypes_list.c;h=10cb4f28b81e674c7af566b9bf288851b84d9442;hb=3427c2e266c04d67848bda913caa730a395c7295;hp=49714176374a2979a24e5c161ac6b303d184708f;hpb=ec6204a39b67229bfb05b763d1ceea135150880d;p=collectd.git diff --git a/src/types_list.c b/src/types_list.c index 49714176..10cb4f28 100644 --- a/src/types_list.c +++ b/src/types_list.c @@ -102,6 +102,10 @@ static void parse_line (char *buf) if (fields_num < 2) return; + /* Ignore lines which begin with a hash sign. */ + if (fields[0][0] == '#') + return; + ds = (data_set_t *) malloc (sizeof (data_set_t)); if (ds == NULL) return;