diff options
| author | Roy Marples <roy@marples.name> | 2007-09-18 12:08:04 +0000 | 
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2007-09-18 12:08:04 +0000 | 
| commit | 807e4afbed9f2802b02f35b738661126e0295bc9 (patch) | |
| tree | 4982e0d967a3873dad5577081072f6a9b08e2a6b /src | |
| parent | 936dc943512289a2692aa12ff666f6dd06b00d86 (diff) | |
| download | openrc-807e4afbed9f2802b02f35b738661126e0295bc9.tar.xz | |
Don't space separate the options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mountinfo.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/mountinfo.c b/src/mountinfo.c index dd7ca4e8..7ee663ae 100644 --- a/src/mountinfo.c +++ b/src/mountinfo.c @@ -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;  				} | 
