diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-09-18 15:41:50 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-09-18 15:41:50 +0000 |
commit | d7a3fc3df4779c15bb832ec9b2bd4dbce34e55ff (patch) | |
tree | 69e5cddc60a814c6a3f94e428126b2eadc564660 | |
parent | 59dc08a7a0e6c640a650ffd938bde870cefc41ca (diff) | |
download | rtmux-d7a3fc3df4779c15bb832ec9b2bd4dbce34e55ff.tar.gz rtmux-d7a3fc3df4779c15bb832ec9b2bd4dbce34e55ff.tar.bz2 rtmux-d7a3fc3df4779c15bb832ec9b2bd4dbce34e55ff.zip |
Sync OpenBSD patchset 761:
Ignore terminal overrides settings without a value.
-rw-r--r-- | tty-term.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.41 2009-12-18 07:42:30 nicm Exp $ */ +/* $Id: tty-term.c,v 1.42 2010-09-18 15:41:50 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -252,7 +252,8 @@ tty_term_override(struct tty_term *term, const char *overrides) } else if (entstr[strlen(entstr) - 1] == '@') { entstr[strlen(entstr) - 1] = '\0'; removeflag = 1; - } + } else + continue; for (i = 0; i < NTTYCODE; i++) { ent = &tty_term_codes[i]; |