diff options
author | Will Fancher <elvishjerricco@gmail.com> | 2023-05-06 22:11:58 +0200 |
---|---|---|
committer | Will Fancher <elvishjerricco@gmail.com> | 2023-05-26 06:45:54 +0200 |
commit | 4b6621fef34d5270c96731ff8bf997365c06d31d (patch) | |
tree | 0e114a512966ddf49d3d8781b3ee6ea2256ae926 /src | |
parent | tmpfiles: Test C-style escape sequences (diff) | |
download | systemd-4b6621fef34d5270c96731ff8bf997365c06d31d.tar.xz systemd-4b6621fef34d5270c96731ff8bf997365c06d31d.zip |
tmpfiles: Allow C escapes
Fixes #26955
Diffstat (limited to 'src')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 518d8012da..e16f26d8d5 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -3358,7 +3358,7 @@ static int parse_line( r = extract_many_words( &buffer, NULL, - EXTRACT_UNQUOTE, + EXTRACT_UNQUOTE | EXTRACT_CUNESCAPE, &action, &path, &mode, |