summaryrefslogtreecommitdiffstats
path: root/contrib/telnet
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-09-25 07:26:25 +0000
committermarkm <markm@FreeBSD.org>2002-09-25 07:26:25 +0000
commit0ec9e3f9969d3957961fd311572a1a150389c5af (patch)
tree625f55fca140e5d09556da0865dfbe26e271e3d2 /contrib/telnet
parent8466db9d92f7a4153195c0328f63c7c2f9bdfe05 (diff)
downloadFreeBSD-src-0ec9e3f9969d3957961fd311572a1a150389c5af.zip
FreeBSD-src-0ec9e3f9969d3957961fd311572a1a150389c5af.tar.gz
Catch up with "base" telnet.
s/FALL THROUGH/FALLTHROUGH/ for lint(1). s/Usage/usage/ for consistency.
Diffstat (limited to 'contrib/telnet')
-rw-r--r--contrib/telnet/telnet/commands.c2
-rw-r--r--contrib/telnet/telnet/main.c6
-rw-r--r--contrib/telnet/telnet/telnet.c12
3 files changed, 8 insertions, 12 deletions
diff --git a/contrib/telnet/telnet/commands.c b/contrib/telnet/telnet/commands.c
index bdec69b..fa53199 100644
--- a/contrib/telnet/telnet/commands.c
+++ b/contrib/telnet/telnet/commands.c
@@ -453,7 +453,7 @@ send_tncmd(void (*func)(int, int), const char *cmd, char *name)
if (isprefix(name, "help") || isprefix(name, "?")) {
int col, len;
- printf("Usage: send %s <value|option>\n", cmd);
+ printf("usage: send %s <value|option>\n", cmd);
printf("\"value\" must be from 0 to 255\n");
printf("Valid options are:\n\t");
diff --git a/contrib/telnet/telnet/main.c b/contrib/telnet/telnet/main.c
index af58d32..1e973b4 100644
--- a/contrib/telnet/telnet/main.c
+++ b/contrib/telnet/telnet/main.c
@@ -61,10 +61,6 @@ static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
#define OPTS_FORWARD_CREDS 0x00000002
#define OPTS_FORWARDABLE_CREDS 0x00000001
-#if 0
-#define FORWARD
-#endif
-
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
char *ipsec_policy_in = NULL;
char *ipsec_policy_out = NULL;
@@ -90,7 +86,7 @@ tninit(void)
static void
usage(void)
{
- fprintf(stderr, "Usage: %s %s%s%s%s\n",
+ fprintf(stderr, "usage: %s %s%s%s%s\n",
prompt,
#ifdef AUTHENTICATION
"[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
diff --git a/contrib/telnet/telnet/telnet.c b/contrib/telnet/telnet/telnet.c
index 4644531..ab0faf4 100644
--- a/contrib/telnet/telnet/telnet.c
+++ b/contrib/telnet/telnet/telnet.c
@@ -286,7 +286,7 @@ willoption(int option)
case TELOPT_BINARY:
case TELOPT_SGA:
settimer(modenegotiated);
- /* FALL THROUGH */
+ /* FALLTHROUGH */
case TELOPT_STATUS:
#ifdef AUTHENTICATION
case TELOPT_AUTHENTICATION:
@@ -346,7 +346,7 @@ wontoption(int option)
case TELOPT_SGA:
if (!kludgelinemode)
break;
- /* FALL THROUGH */
+ /* FALLTHROUGH */
#endif
case TELOPT_ECHO:
settimer(modenegotiated);
@@ -1418,7 +1418,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:
/*
@@ -1426,7 +1426,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
@@ -1439,7 +1439,7 @@ env_opt(unsigned char *buf, int len)
break;
case ENV_ESC:
i++;
- /*FALL THROUGH*/
+ /*FALLTHROUGH*/
default:
if (epc)
*epc++ = buf[i];
@@ -1648,7 +1648,7 @@ telrcv(void)
TTYADD(c);
break;
}
- /* Else, fall through */
+ /* FALLTHROUGH */
case TS_DATA:
if (c == IAC) {
OpenPOWER on IntegriCloud