From: Lennart Poettering Date: Sat, 29 Aug 2015 17:43:48 +0000 (+0200) Subject: nspawn: don't try to extract quotes from option string, glibc doesn't do that either X-Git-Tag: v226~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a19222e1d39e8f0ae254bf02b7babb0bd73ee5be;p=thirdparty%2Fsystemd.git nspawn: don't try to extract quotes from option string, glibc doesn't do that either Follow-up regarding #649. --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index edf5b9fc576..8039847a721 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1171,7 +1171,7 @@ static int parse_mount_bind_options(const char *options, unsigned long *mount_fl for (;;) { _cleanup_free_ char *word = NULL; - int r = extract_first_word(&p, &word, ",", EXTRACT_QUOTES); + int r = extract_first_word(&p, &word, ",", 0); if (r < 0) return log_error_errno(r, "Failed to extract mount option: %m"); if (r == 0)