[rlogin.1] Document the -4' and -6' options. Correct a typo.

[rlogin.c] Make the usage message match the code.
This commit is contained in:
Joseph Koshy 2000-11-24 09:14:09 +00:00
parent a352dd9a71
commit 0deea1c066
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69102
2 changed files with 7 additions and 3 deletions

View File

@ -40,7 +40,7 @@
.Nd remote login .Nd remote login
.Sh SYNOPSIS .Sh SYNOPSIS
.Ar rlogin .Ar rlogin
.Op Fl 8DEKLdx .Op Fl 468DEKLdx
.Op Fl e Ar char .Op Fl e Ar char
.Op Fl i Ar localname .Op Fl i Ar localname
.Op Fl k Ar realm .Op Fl k Ar realm
@ -58,13 +58,17 @@ If the remote host does not supporting Kerberos the standard Berkeley
authorization mechanism is used. authorization mechanism is used.
The options are as follows: The options are as follows:
.Bl -tag -width flag .Bl -tag -width flag
.It Fl 4
Use IPv4 addresses only.
.It Fl 6
Use IPv6 addresses only.
.It Fl 8 .It Fl 8
The The
.Fl 8 .Fl 8
option allows an eight-bit input data path at all times; otherwise option allows an eight-bit input data path at all times; otherwise
parity bits are stripped except when the remote side's stop and start parity bits are stripped except when the remote side's stop and start
characters are other than characters are other than
^S/^Q . ^S/^Q.
.It Fl D .It Fl D
The The
.Fl D .Fl D

View File

@ -891,7 +891,7 @@ usage()
"8DEKLd", " [-k realm] "); "8DEKLd", " [-k realm] ");
#endif #endif
#else #else
"8DELd", " "); "8DEKLd", " ");
#endif #endif
exit(1); exit(1);
} }