X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Ftypes_list.c;h=10cb4f28b81e674c7af566b9bf288851b84d9442;hb=acc226d722bf3d4d06ff49f93f2bed27aec3aec6;hp=49714176374a2979a24e5c161ac6b303d184708f;hpb=e21d0408e4e4001b8c66bb1ea7d41b890100d0f5;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;