diff options
author | dd <dd@FreeBSD.org> | 2002-10-02 00:37:01 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2002-10-02 00:37:01 +0000 |
commit | e6b1ede7fbd2b3494c0d1d8de1a5c68e2c7f8d93 (patch) | |
tree | 17c94ec3480b16d5cea3f565f50a428a54fac7a2 /usr.bin/telnet/telnet.c | |
parent | 9c9f69c519678216eea52bfde4be14400044f4dc (diff) | |
download | FreeBSD-src-e6b1ede7fbd2b3494c0d1d8de1a5c68e2c7f8d93.zip FreeBSD-src-e6b1ede7fbd2b3494c0d1d8de1a5c68e2c7f8d93.tar.gz |
Remove some #if 0'd code. After this, a "make unifdef" here produces
no changes (against crypto telnet).
Reviewed by: MD5
Diffstat (limited to 'usr.bin/telnet/telnet.c')
-rw-r--r-- | usr.bin/telnet/telnet.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/usr.bin/telnet/telnet.c b/usr.bin/telnet/telnet.c index 27aeaa9..9971152 100644 --- a/usr.bin/telnet/telnet.c +++ b/usr.bin/telnet/telnet.c @@ -1946,47 +1946,6 @@ telnet(char *user __unusedhere) } } -#if 0 /* XXX - this not being in is a bug */ -/* - * nextitem() - * - * Return the address of the next "item" in the TELNET data - * stream. This will be the address of the next character if - * the current address is a user data character, or it will - * be the address of the character following the TELNET command - * if the current address is a TELNET IAC ("I Am a Command") - * character. - */ - -static char * -nextitem(char *current) -{ - if ((*current&0xff) != IAC) { - return current+1; - } - switch (*(current+1)&0xff) { - case DO: - case DONT: - case WILL: - case WONT: - return current+3; - case SB: /* loop forever looking for the SE */ - { - char *look = current+2; - - for (;;) { - if ((*look++&0xff) == IAC) { - if ((*look++&0xff) == SE) { - return look; - } - } - } - } - default: - return current+2; - } -} -#endif /* 0 */ /* * netclear() |