diff options
author | paul <paul> | 2003-10-26 21:36:07 +0000 |
---|---|---|
committer | paul <paul> | 2003-10-26 21:36:07 +0000 |
commit | e937253b72b9fa526a56866bd4b827bf05bfb80c (patch) | |
tree | ca04ee467b851042cd1e1f1462d02048580edb5a /lib/vty.c | |
parent | bb46e94fcccd9ede513bef8d8e22fe5fafdfbd10 (diff) |
2003-10-26 Paul Jakma <paul@dishone.st>
* lib/vty.c: (vty_read) additional change i had applied to Jay's
telnet sub-option processing crash fix was incorrect, revert.
Diffstat (limited to 'lib/vty.c')
-rw-r--r-- | lib/vty.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1291,8 +1291,7 @@ vty_read (struct thread *thread) { /* In case of telnet command */ int ret = 0; - if (vty->iac_sb_in_progress) - ret = vty_telnet_option (vty, buf + i, nbytes - i); + ret = vty_telnet_option (vty, buf + i, nbytes - i); vty->iac = 0; i += ret; continue; |