From 7a2e60f0e312f21968ea20651075f90741a2bb29 Mon Sep 17 00:00:00 2001 From: markm Date: Wed, 25 Sep 2002 07:28:04 +0000 Subject: Catch up with "base" telnet. s/FALL THROUGH/FALLTHROUGH/ for lint(1). --- contrib/telnet/telnetd/state.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/telnet') 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; -- cgit v1.1