diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-16 19:01:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-16 19:01:16 +0000 |
commit | b03783efad9e488935bb81e57aca3b3c76bc498a (patch) | |
tree | bd4dcbdf8b261c96bf89540f4e42f5b65dbb8b1a /tty-term.c | |
parent | f5126e20f176b891c9f851a6a8eba6efca5501bb (diff) | |
download | rtmux-b03783efad9e488935bb81e57aca3b3c76bc498a.tar.gz rtmux-b03783efad9e488935bb81e57aca3b3c76bc498a.tar.bz2 rtmux-b03783efad9e488935bb81e57aca3b3c76bc498a.zip |
strdup() not necessary here.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.14 2009-02-12 00:18:05 nicm Exp $ */ +/* $Id: tty-term.c,v 1.15 2009-02-16 19:01:16 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -218,9 +218,6 @@ tty_term_find(char *name, int fd, char **cause) for (i = 0; i < NTTYCODE; i++) { ent = &tty_term_codes[i]; -// if (ent->code == TTYC_CSR)/*XXX*/ -// continue; - code = &term->codes[ent->code]; code->type = TTYCODE_NONE; switch (ent->type) { |