summaryrefslogtreecommitdiffstats
path: root/contrib/telnet
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-09-25 07:28:04 +0000
committermarkm <markm@FreeBSD.org>2002-09-25 07:28:04 +0000
commit7a2e60f0e312f21968ea20651075f90741a2bb29 (patch)
tree11a87d8871126bbde2919b73156049500f9516c0 /contrib/telnet
parent0ec9e3f9969d3957961fd311572a1a150389c5af (diff)
downloadFreeBSD-src-7a2e60f0e312f21968ea20651075f90741a2bb29.zip
FreeBSD-src-7a2e60f0e312f21968ea20651075f90741a2bb29.tar.gz
Catch up with "base" telnet.
s/FALL THROUGH/FALLTHROUGH/ for lint(1).
Diffstat (limited to 'contrib/telnet')
-rw-r--r--contrib/telnet/telnetd/state.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/telnet/telnetd/state.c b/contrib/telnet/telnetd/state.c
index ff0828d..93de48e 100644
--- a/contrib/telnet/telnetd/state.c
+++ b/contrib/telnet/telnetd/state.c
@@ -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;
OpenPOWER on IntegriCloud