summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--contrib/telnet/telnetd/state.c6
-rw-r--r--crypto/telnet/telnetd/state.c6
2 files changed, 6 insertions, 6 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;
diff --git a/crypto/telnet/telnetd/state.c b/crypto/telnet/telnetd/state.c
index ff0828d..93de48e 100644
--- a/crypto/telnet/telnetd/state.c
+++ b/crypto/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