summaryrefslogtreecommitdiffstats
path: root/usr.bin/rlogin
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2003-09-28 08:43:41 +0000
committertjr <tjr@FreeBSD.org>2003-09-28 08:43:41 +0000
commitb4e4a702887ec90af675bbe7f9fa1255e04c2ffc (patch)
tree7d179052a3978e5448e0afaf230d581b0272cab0 /usr.bin/rlogin
parentf01a9a9c01d0ef4c5295aca136287c511f895494 (diff)
downloadFreeBSD-src-b4e4a702887ec90af675bbe7f9fa1255e04c2ffc.zip
FreeBSD-src-b4e4a702887ec90af675bbe7f9fa1255e04c2ffc.tar.gz
Remove remnants of Kerberos -Kkx options.
Diffstat (limited to 'usr.bin/rlogin')
-rw-r--r--usr.bin/rlogin/rlogin.125
-rw-r--r--usr.bin/rlogin/rlogin.c4
2 files changed, 4 insertions, 25 deletions
diff --git a/usr.bin/rlogin/rlogin.1 b/usr.bin/rlogin/rlogin.1
index 4975940..9b2818c 100644
--- a/usr.bin/rlogin/rlogin.1
+++ b/usr.bin/rlogin/rlogin.1
@@ -32,7 +32,7 @@
.\" @(#)rlogin.1 8.1 (Berkeley) 6/6/93
.\" $FreeBSD$
.\"
-.Dd June 6, 1993
+.Dd September 26, 2003
.Dt RLOGIN 1
.Os
.Sh NAME
@@ -40,10 +40,9 @@
.Nd remote login
.Sh SYNOPSIS
.Ar rlogin
-.Op Fl 468DEKLdx
+.Op Fl 468DELd
.Op Fl e Ar char
.Op Fl i Ar localname
-.Op Fl k Ar realm
.Op Fl l Ar username
.Ar host
.Sh DESCRIPTION
@@ -79,8 +78,6 @@ Stop any character from being recognized as an escape character.
When used with the
.Fl 8
option, this provides a completely transparent connection.
-.It Fl K
-Turn off all Kerberos authentication.
.It Fl L
Allow the
.Nm
@@ -102,29 +99,11 @@ value in the form \ennn.
.It Fl i
Allow the caller to specify a different local name to be used
for authentication. This option is restricted to processes with uid 0.
-.It Fl k
-Request
-.Nm
-to obtain tickets for the remote host
-in realm
-.Ar realm
-instead of the remote host's realm as determined by
-.Xr krb_realmofhost 3 .
.It Fl l
Specify a different
.Ar username
for the remote login.
If this option is not specified, your local username will be used.
-.It Fl x
-Turn on
-.Tn DES
-encryption for all data passed via the
-.Nm
-session.
-This may impact response time and
-.Tn CPU
-utilization, but provides
-increased security.
.El
.Pp
A line of the form
diff --git a/usr.bin/rlogin/rlogin.c b/usr.bin/rlogin/rlogin.c
index 89d1bef..efa54c8 100644
--- a/usr.bin/rlogin/rlogin.c
+++ b/usr.bin/rlogin/rlogin.c
@@ -157,7 +157,7 @@ main(int argc, char *argv[])
argoff = 1;
}
-#define OPTIONS "468DEKLde:i:l:"
+#define OPTIONS "468DELde:i:l:"
while ((ch = getopt(argc - argoff, argv + argoff, OPTIONS)) != -1)
switch(ch) {
case '4':
@@ -731,7 +731,7 @@ usage(void)
{
(void)fprintf(stderr,
"usage: rlogin [-46%s]%s[-e char] [-i localname] [-l username] host\n",
- "8DEKLd", " ");
+ "8DELd", " ");
exit(1);
}
OpenPOWER on IntegriCloud