Catch up with "base" telnet.

s/FALL THROUGH/FALLTHROUGH/ for lint(1).


git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@103956 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
This commit is contained in:
markm 2002-09-25 07:28:04 +00:00
parent 112a50cd56
commit 5a5138f8df
1 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ telrcv(void)
if ((c == 0) || (c == '\n')) {
break;
}
/* FALL THROUGH */
/* FALLTHROUGH */
case TS_DATA:
if (c == IAC) {
@ -1311,7 +1311,7 @@ suboption(void)
case ENV_ESC:
if (!SB_EOF())
c = SB_GET();
/* FALL THROUGH */
/* FALLTHROUGH */
default:
empty = 0;
continue;
@ -1398,7 +1398,7 @@ suboption(void)
if (SB_EOF())
break;
c = SB_GET();
/* FALL THROUGH */
/* FALLTHROUGH */
default:
*cp++ = c;
break;