X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmount%2Fmount.c;h=487c0a62bc20f5d7edf02a72334423c1ee30702a;hp=c6644b1cde10b24a2be3c31ac138c21bc29c996f;hb=6facb22402a0bd8cd49be2ed1a0856b24fef42f4;hpb=b3b111b1bd5fbc678419bf1964b6093045081139 diff --git a/utils/mount/mount.c b/utils/mount/mount.c index c6644b1..487c0a6 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -261,18 +261,30 @@ static void parse_opts (const char *options, int *flags, char **extra_opts) { if (options != NULL) { char *opts = xstrdup(options); - char *opt; - int len = strlen(opts) + 20; + char *opt, *p; + int len = strlen(opts); + int open_quote = 0; *extra_opts = xmalloc(len); **extra_opts = '\0'; - for (opt = strtok(opts, ","); opt; opt = strtok(NULL, ",")) - parse_opt(opt, flags, *extra_opts, len); - + for (p=opts, opt=NULL; p && *p; p++) { + if (!opt) + opt = p; /* begin of the option item */ + if (*p == '"') + open_quote ^= 1; /* reverse the status */ + if (open_quote) + continue; /* still in a quoted block */ + if (*p == ',') + *p = '\0'; /* terminate the option item */ + /* end of option item or last item */ + if (*p == '\0' || *(p+1) == '\0') { + parse_opt(opt, flags, *extra_opts, len); + opt = NULL; + } + } free(opts); } - } static void mount_error(char *node)