Don't space separate the options

This commit is contained in:
Roy Marples 2007-09-18 12:08:04 +00:00
parent 936dc94351
commit 807e4afbed

View File

@ -176,7 +176,7 @@ static char **find_mounts (struct args *args)
options = rc_xstrdup (o->o_name);
else {
char *tmp = NULL;
asprintf (&tmp, "%s, %s", options, o->o_name);
asprintf (&tmp, "%s,%s", options, o->o_name);
free (options);
options = tmp;
}