diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-05-05 10:10:57 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-05-05 10:10:57 +0000 |
commit | b5812013efda9025aedb5d395b9bd43640c2419c (patch) | |
tree | ba3b0906256b91a2f7636c7d59da2df4d3d1fd9a | |
parent | a734b41fda96ddf434873592d61585a68696f6ec (diff) | |
download | rtmux-b5812013efda9025aedb5d395b9bd43640c2419c.tar.gz rtmux-b5812013efda9025aedb5d395b9bd43640c2419c.tar.bz2 rtmux-b5812013efda9025aedb5d395b9bd43640c2419c.zip |
Sync OpenBSD patchset 901:
Don't use strnvis for the title as it breaks UTF-8. set-titles is now
off by default and we have to trust the terminal can understand what we
send it anyway so there isn't any harm.
-rw-r--r-- | screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.103 2010-12-11 17:57:28 nicm Exp $ */ +/* $Id: screen.c,v 1.104 2011-05-05 10:10:57 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -96,7 +96,7 @@ screen_set_title(struct screen *s, const char *title) { char tmp[BUFSIZ]; - strnvis(tmp, title, sizeof tmp, VIS_OCTAL|VIS_TAB|VIS_NL); + strlcpy(tmp, title, sizeof tmp); xfree(s->title); s->title = xstrdup(tmp); |