diff options
author | nicm <nicm> | 2017-01-15 20:14:36 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-15 20:14:36 +0000 |
commit | a3cf99501782fc036d415369eb5a5d805eb9bdcc (patch) | |
tree | 25a012296f9de454e0df55b9a39dd29b746e21e2 /options.c | |
parent | e06efab9da1f4edb3cb631dc752d7786d5edb5cf (diff) | |
download | rtmux-a3cf99501782fc036d415369eb5a5d805eb9bdcc.tar.gz rtmux-a3cf99501782fc036d415369eb5a5d805eb9bdcc.tar.bz2 rtmux-a3cf99501782fc036d415369eb5a5d805eb9bdcc.zip |
Append needs to go old,new not new,old...
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |