diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2000-10-06 10:55:01 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2000-10-06 10:55:01 +0000 |
commit | 1c91100a7942ff31b1fa5e3c8e09c3306b1776bc (patch) | |
tree | 5f32af4794cffd1505f158903908b160fcdf33a3 | |
parent | 194b2a889f8375601e8d20f1a2d7232c98b11793 (diff) |
Remove the unimplemented -edebug flag from usage and manpage.
-rw-r--r-- | libexec/telnetd/telnetd.8 | 9 | ||||
-rw-r--r-- | libexec/telnetd/telnetd.c | 7 |
2 files changed, 3 insertions, 13 deletions
diff --git a/libexec/telnetd/telnetd.8 b/libexec/telnetd/telnetd.8 index 2f9d3f6e2ff..5cbfece2784 100644 --- a/libexec/telnetd/telnetd.8 +++ b/libexec/telnetd/telnetd.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: telnetd.8,v 1.15 2000/08/18 03:26:09 itojun Exp $ +.\" $OpenBSD: telnetd.8,v 1.16 2000/10/06 10:55:00 hin Exp $ .\" $NetBSD: telnetd.8,v 1.8 1996/03/20 04:25:55 tls Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -50,7 +50,6 @@ protocol server .Op Fl S Ar tos .Op Fl X Ar authtype .Op Fl a Ar authmode -.Op Fl edebug .Op Fl g Ar gettyent .Op Fl r Ns Ar lowpty-highpty .Op Fl u Ar len @@ -174,12 +173,6 @@ Enables debugging on each socket created by .Dv SO_DEBUG in .Xr socket 2 ) . -.It Fl edebug -If -.Nm -has been compiled with support for data encryption, then the -.Fl edebug -option may be used to enable encryption debugging code. .It Fl g Ar gettyent Specifies which entry from .Pa /etc/gettytab diff --git a/libexec/telnetd/telnetd.c b/libexec/telnetd/telnetd.c index 38055fb473e..cf8fbd00609 100644 --- a/libexec/telnetd/telnetd.c +++ b/libexec/telnetd/telnetd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: telnetd.c,v 1.23 2000/09/15 07:13:48 deraadt Exp $ */ +/* $OpenBSD: telnetd.c,v 1.24 2000/10/06 10:55:00 hin Exp $ */ /* $NetBSD: telnetd.c,v 1.6 1996/03/20 04:25:57 tls Exp $ */ /* @@ -45,7 +45,7 @@ static char copyright[] = static char sccsid[] = "@(#)telnetd.c 8.4 (Berkeley) 5/30/95"; static char rcsid[] = "$NetBSD: telnetd.c,v 1.5 1996/02/28 20:38:23 thorpej Exp $"; #else -static char rcsid[] = "$OpenBSD: telnetd.c,v 1.23 2000/09/15 07:13:48 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: telnetd.c,v 1.24 2000/10/06 10:55:00 hin Exp $"; #endif #endif /* not lint */ @@ -553,9 +553,6 @@ usage() #ifdef DIAGNOSTICS " [-D (options|report|exercise|netdata|ptydata)]\n\t" #endif -#ifdef AUTHENTICATION - " [-edebug]" -#endif " [-h]" #if defined(CRAY) && defined(NEWINIT) " [-Iinitid]" |