diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-06-30 04:10:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-30 04:10:40 +0900 |
commit | 539bcc831b67a047e4e19469eb4471fc4ea024b6 (patch) | |
tree | be56cbc4b9ce4c1d07e4c3f1de0aac44b984cf0d /src/shared/securebits-util.c | |
parent | e0e334d0e42fa6d27a3d6ab5e593cb40e19d6f5a (diff) | |
parent | 9c02391088558427152014b2b8a87c36a129f675 (diff) | |
download | systemd-539bcc831b67a047e4e19469eb4471fc4ea024b6.tar.gz |
Merge pull request #12903 from keszybz/condition-quoting
Condition quoting
Diffstat (limited to 'src/shared/securebits-util.c')
-rw-r--r-- | src/shared/securebits-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/securebits-util.c b/src/shared/securebits-util.c index 6d31dfeff0..b2abaf4f52 100644 --- a/src/shared/securebits-util.c +++ b/src/shared/securebits-util.c @@ -42,7 +42,7 @@ int secure_bits_from_string(const char *s) { for (p = s;;) { _cleanup_free_ char *word = NULL; - r = extract_first_word(&p, &word, NULL, EXTRACT_QUOTES); + r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE); if (r == -ENOMEM) return r; if (r <= 0) |