From f660385d06242514dd6bf1eb2cc183139930b613 Mon Sep 17 00:00:00 2001 From: Raheman Vaiya Date: Wed, 27 Jul 2022 18:12:28 -0400 Subject: [PATCH] bugfix: Avoid processing global section --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index a1e8ab6..47d592a 100644 --- a/src/config.c +++ b/src/config.c @@ -431,7 +431,7 @@ int config_parse(struct config *config, const char *path) if (!strcmp(section->name, "ids") || !strcmp(section->name, "aliases") || - !strcmp(section->name, "globals")) + !strcmp(section->name, "global")) continue; layername = strtok(section->name, ":");