From: paul Date: Sun, 26 Oct 2003 21:36:07 +0000 (+0000) Subject: 2003-10-26 Paul Jakma X-Git-Tag: frr-2.0-rc1~3872 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e937253b72b9fa526a56866bd4b827bf05bfb80c;p=mirror%2Ffrr.git 2003-10-26 Paul Jakma * lib/vty.c: (vty_read) additional change i had applied to Jay's telnet sub-option processing crash fix was incorrect, revert. --- diff --git a/lib/vty.c b/lib/vty.c index deae16e327..edfd99dd8d 100644 --- a/lib/vty.c +++ b/lib/vty.c @@ -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;