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