Do not unescape unit names in [Install] section

https://bugs.freedesktop.org/show_bug.cgi?id=49316
This commit is contained in:
Michal Sekletar
2014-05-26 20:12:19 +02:00
committed by Zbigniew Jędrzejewski-Szmek
parent 49804365ea
commit 000f6e5667
+1 -1
View File
@@ -688,7 +688,7 @@ int config_parse_strv(const char *unit,
FOREACH_WORD_QUOTED(w, l, rvalue, state) {
char *n;
n = cunescape_length(w, l);
n = strndup(w, l);
if (!n)
return log_oom();