diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-08-16 21:32:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-08-16 21:32:03 +0200 |
commit | 0038aed166da0ae991f13cf512b84ac8f77d22ae (patch) | |
tree | e949a1977a563e44763d6000c1467ef4726705cf /src/shared | |
parent | d1584b9f5b8ba7857ee8f287c87a78da74ec30fe (diff) | |
parent | 2eadf91ca15a982adf71b86e6ee035ac368e74bc (diff) |
Merge pull request #908 from richardmaw-codethink/nspawn-path-escapes-v3
Allow arbitrary file paths to be passed to nspawn (v3)
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/condition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/condition.c b/src/shared/condition.c index 24871b0dae..f58e84a3d0 100644 --- a/src/shared/condition.c +++ b/src/shared/condition.c @@ -101,7 +101,7 @@ static int condition_test_kernel_command_line(Condition *c) { _cleanup_free_ char *word = NULL; bool found; - r = unquote_first_word(&p, &word, UNQUOTE_RELAX); + r = extract_first_word(&p, &word, NULL, EXTRACT_QUOTES|EXTRACT_RELAX); if (r < 0) return r; if (r == 0) |