aboutsummaryrefslogtreecommitdiff
path: root/src/mountinfo.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-09-18 12:08:04 +0000
committerRoy Marples <roy@marples.name>2007-09-18 12:08:04 +0000
commit807e4afbed9f2802b02f35b738661126e0295bc9 (patch)
tree4982e0d967a3873dad5577081072f6a9b08e2a6b /src/mountinfo.c
parent936dc943512289a2692aa12ff666f6dd06b00d86 (diff)
Don't space separate the options
Diffstat (limited to 'src/mountinfo.c')
-rw-r--r--src/mountinfo.c2
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;
}