From f285f07752d784e5fa1b84ac8cbc263c488eccd1 Mon Sep 17 00:00:00 2001 From: Michael Chapman Date: Tue, 5 May 2020 13:38:25 +1000 Subject: [PATCH] core/path: use escaped path in serialization --- src/core/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/path.c b/src/core/path.c index cb75d778afa..d216dcb8508 100644 --- a/src/core/path.c +++ b/src/core/path.c @@ -616,7 +616,7 @@ static int path_serialize(Unit *u, FILE *f, FDSet *fds) { (void) serialize_item_format(f, "path-spec", "%s %i %s", path_type_to_string(s->type), s->previous_exists, - s->path); + escaped); } return 0; -- 2.47.3