summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options.c b/options.c
index 811606b2..be7d4d9c 100644
--- a/options.c
+++ b/options.c
@@ -151,7 +151,7 @@ options_set_string(struct options *oo, const char *name, int append,
if (o == NULL || !append)
value = s;
else {
- xasprintf(&value, "%s%s", s, o->str);
+ xasprintf(&value, "%s%s", o->str, s);
free(s);
}