From: Zbigniew Jędrzejewski-Szmek Date: Tue, 20 Oct 2020 15:12:42 +0000 (+0200) Subject: sd-hwdb: allow empty properties X-Git-Tag: v247-rc1~32^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afe87974dd57741f74dd87165b251886f24c859f;p=thirdparty%2Fsystemd.git sd-hwdb: allow empty properties So far we didn't allow empty properties, but it makes sense to do so, for example to distinguish empty data from lack of data. It also makes it easy to override properties (back to the empty) value for specific cases. --- diff --git a/src/libsystemd/sd-hwdb/hwdb-util.c b/src/libsystemd/sd-hwdb/hwdb-util.c index 1b642b68514..c2bfcd1d42b 100644 --- a/src/libsystemd/sd-hwdb/hwdb-util.c +++ b/src/libsystemd/sd-hwdb/hwdb-util.c @@ -456,10 +456,9 @@ static int insert_data(struct trie *trie, char **match_list, char *line, const c while (isblank(line[0]) && isblank(line[1])) line++; - if (isempty(line + 1) || isempty(value)) + if (isempty(line + 1)) return log_syntax(NULL, LOG_WARNING, filename, line_number, SYNTHETIC_ERRNO(EINVAL), - "Empty %s in \"%s=%s\", ignoring", - isempty(line + 1) ? "key" : "value", + "Empty key in \"%s=%s\", ignoring", line, value); STRV_FOREACH(entry, match_list)