summaryrefslogtreecommitdiff
path: root/src/core/service.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-09-17 21:58:03 +0200
committerLennart Poettering <lennart@poettering.net>2012-09-17 21:58:03 +0200
commitfaa368e3376cb5e3e3c27550fdde652f1d3c9584 (patch)
tree5273c0804ce364ebaf5735e8b897397e1b7bd5b9 /src/core/service.c
parentd4d882e5cefb6b16d84e651a00a9e98914d54bd6 (diff)
conf-parser: don't unescape parsed configuration strings by default
In many cases this might have a negative effect since we drop escaping from strings where we better shouldn't have dropped it. If unescaping makes sense for some settings we can readd it later again, on a per-case basis. https://bugs.freedesktop.org/show_bug.cgi?id=54522
Diffstat (limited to 'src/core/service.c')
-rw-r--r--src/core/service.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/service.c b/src/core/service.c
index 7b5ff6d1ac..5f7ddfaf14 100644
--- a/src/core/service.c
+++ b/src/core/service.c
@@ -932,7 +932,6 @@ static int service_load_sysv_path(Service *s, const char *path) {
s->timeout_stop_usec = DEFAULT_SYSV_TIMEOUT_USEC;
}
-
/* Special setting for all SysV services */
s->type = SERVICE_FORKING;
s->remain_after_exit = !s->pid_file;