=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options.c,v retrieving revision 1.24 retrieving revision 1.25 diff -c -r1.24 -r1.25 *** src/usr.bin/tmux/options.c 2017/01/13 11:58:49 1.24 --- src/usr.bin/tmux/options.c 2017/01/15 20:14:36 1.25 *************** *** 1,4 **** ! /* $OpenBSD: options.c,v 1.24 2017/01/13 11:58:49 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options.c,v 1.25 2017/01/15 20:14:36 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 151,157 **** if (o == NULL || !append) value = s; else { ! xasprintf(&value, "%s%s", s, o->str); free(s); } --- 151,157 ---- if (o == NULL || !append) value = s; else { ! xasprintf(&value, "%s%s", o->str, s); free(s); }