summaryrefslogtreecommitdiffstats
path: root/usr.bin/telnet
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>2002-08-25 13:23:09 +0000
committercharnier <charnier@FreeBSD.org>2002-08-25 13:23:09 +0000
commit7dd9d470599f145845572ac1f0d4b621c19c1cdb (patch)
tree9d932320e38df05718ee72d760a4d0d204431b9b /usr.bin/telnet
parent4966efff7bc9071f04706819e62e1a291d22bcb2 (diff)
downloadFreeBSD-src-7dd9d470599f145845572ac1f0d4b621c19c1cdb.zip
FreeBSD-src-7dd9d470599f145845572ac1f0d4b621c19c1cdb.tar.gz
Replace various spelling with FALLTHROUGH which is lint()able
Diffstat (limited to 'usr.bin/telnet')
-rw-r--r--usr.bin/telnet/telnet.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/telnet/telnet.c b/usr.bin/telnet/telnet.c
index a570a86..27aeaa9 100644
--- a/usr.bin/telnet/telnet.c
+++ b/usr.bin/telnet/telnet.c
@@ -272,7 +272,7 @@ willoption(int option)
case TELOPT_BINARY:
case TELOPT_SGA:
settimer(modenegotiated);
- /* FALL THROUGH */
+ /* FALLTHROUGH */
case TELOPT_STATUS:
new_state_ok = 1;
break;
@@ -322,7 +322,7 @@ wontoption(int option)
case TELOPT_SGA:
if (!kludgelinemode)
break;
- /* FALL THROUGH */
+ /* FALLTHROUGH */
#endif
case TELOPT_ECHO:
settimer(modenegotiated);
@@ -1293,7 +1293,7 @@ env_opt(unsigned char *buf, int len)
old_env_var = OLD_ENV_VAR;
old_env_value = OLD_ENV_VALUE;
}
- /* FALL THROUGH */
+ /* FALLTHROUGH */
# endif
case OLD_ENV_VALUE:
/*
@@ -1301,7 +1301,7 @@ env_opt(unsigned char *buf, int len)
* still recognize it, just in case it is an
* old server that has VAR & VALUE mixed up...
*/
- /* FALL THROUGH */
+ /* FALLTHROUGH */
#else
case NEW_ENV_VAR:
#endif
@@ -1314,7 +1314,7 @@ env_opt(unsigned char *buf, int len)
break;
case ENV_ESC:
i++;
- /*FALL THROUGH*/
+ /*FALLTHROUGH*/
default:
if (epc)
*epc++ = buf[i];
@@ -1519,7 +1519,7 @@ telrcv(void)
TTYADD(c);
break;
}
- /* Else, fall through */
+ /* FALLTHROUGH */
case TS_DATA:
if (c == IAC) {
OpenPOWER on IntegriCloud