nspawn: don't try to extract quotes from option string, glibc doesn't do that either

Follow-up regarding #649.
This commit is contained in:
Lennart Poettering 2015-08-29 19:43:48 +02:00
parent e9916ffdba
commit a19222e1d3

View file

@ -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)