Catch up with "base" telnet.

s/FALL THROUGH/FALLTHROUGH/ for lint(1).
This commit is contained in:
Mark Murray 2002-09-25 07:28:04 +00:00
parent 86953b026a
commit 4141227a94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103956
2 changed files with 6 additions and 6 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;

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;