summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Sekletar <msekleta@redhat.com>2014-05-26 20:09:45 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-05-26 20:12:19 +0200
commit000f6e5667eb4f73e137cbd0d7395a9f9db7728a (patch)
treeec279c23160a42e323c2ac42ccecaac35cd9d459
parent49804365ea1242456c9763058a59cf68479e07ea (diff)
downloadsystemd-000f6e5667eb4f73e137cbd0d7395a9f9db7728a.tar.gz
Do not unescape unit names in [Install] section
https://bugs.freedesktop.org/show_bug.cgi?id=49316
-rw-r--r--src/shared/conf-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/conf-parser.c b/src/shared/conf-parser.c
index 77a172e9f1..158e9efd4c 100644
--- a/src/shared/conf-parser.c
+++ b/src/shared/conf-parser.c
@@ -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();