From: Stef Walter Date: Thu, 17 Feb 2011 19:01:21 +0000 (+0100) Subject: Only allow colon between name and value. X-Git-Tag: 0.1~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c03b1023835887569315fbec6295be3cc0f4cf42;p=p11-kit Only allow colon between name and value. --- diff --git a/module/conf.c b/module/conf.c index 1e0d565..6c83407 100644 --- a/module/conf.c +++ b/module/conf.c @@ -200,8 +200,8 @@ conf_parse_file (const char* filename, int flags, if (!*name || *name == '#') continue; - /* Look for the break between name = value on the same line */ - value = name + strcspn (name, ":="); + /* Look for the break between name: value on the same line */ + value = name + strcspn (name, ":"); if (!*value) { errmsg (error_func, "%s: invalid config line: %s", filename, name); errno = EINVAL; diff --git a/tests/files/test-1.conf b/tests/files/test-1.conf index 01193c6..d4ae0a1 100644 --- a/tests/files/test-1.conf +++ b/tests/files/test-1.conf @@ -1,5 +1,5 @@ -key1=value1 -with-whitespace = value-with-whitespace +key1:value1 +with-whitespace : value-with-whitespace with-colon: value-of-colon # A comment