diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-11-07 00:10:24 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-11-07 01:19:56 +0100 |
commit | f32d2db140150b9d38684a699c9875b6e24ca27c (patch) | |
tree | eb38387cedcf3b89cf3eecfec0aa273f83631303 /src/shared/condition.c | |
parent | b5884878a2874447b2a9f07f324a7cd909d96d48 (diff) |
util: rework /proc/cmdline parser to use unquote_first_word()
Diffstat (limited to 'src/shared/condition.c')
-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 ae23599410..c5a3caa4db 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); + r = unquote_first_word(&p, &word, true); if (r < 0) return r; if (r == 0) |