aboutsummaryrefslogtreecommitdiff
path: root/libexec/telnetd
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-09-16 08:26:13 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-09-16 08:26:13 +0000
commit5be28542797ac26e17de490f50e0830003596d38 (patch)
tree8069da00bdeed33ee5434671a0bae67379506370 /libexec/telnetd
parente5eb97b547f5af1e2b6e4396933dc06b93d5590e (diff)
This commit was manufactured by cvs2svn to create tagrelease/3.3.0_cvs
'RELENG_3_3_0_RELEASE'. This commit was manufactured to restore the state of the 3.3-RELEASE image. Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'libexec/telnetd')
-rw-r--r--libexec/telnetd/Makefile2
-rw-r--r--libexec/telnetd/ext.h2
-rw-r--r--libexec/telnetd/global.c2
-rw-r--r--libexec/telnetd/pathnames.h2
-rw-r--r--libexec/telnetd/slc.c2
-rw-r--r--libexec/telnetd/state.c2
-rw-r--r--libexec/telnetd/sys_term.c2
-rw-r--r--libexec/telnetd/telnetd.82
-rw-r--r--libexec/telnetd/telnetd.c2
-rw-r--r--libexec/telnetd/termstat.c2
-rw-r--r--libexec/telnetd/utility.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile
index 068087a62c65..cb79f3cfaa60 100644
--- a/libexec/telnetd/Makefile
+++ b/libexec/telnetd/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.2 (Berkeley) 12/15/93
-# $FreeBSD$
+# $FreeBSD: src/libexec/telnetd/Makefile,v 1.11.2.1 1999/08/29 15:04:18 peter Exp $
PROG= telnetd
CFLAGS+=-DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS
diff --git a/libexec/telnetd/ext.h b/libexec/telnetd/ext.h
index bce0e2a71aef..5d0823db4c70 100644
--- a/libexec/telnetd/ext.h
+++ b/libexec/telnetd/ext.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ext.h 8.2 (Berkeley) 12/15/93
- * $FreeBSD$
+ * $FreeBSD: src/libexec/telnetd/ext.h,v 1.6.2.1 1999/08/29 15:04:18 peter Exp $
*/
/*
diff --git a/libexec/telnetd/global.c b/libexec/telnetd/global.c
index cedff5770f81..972d44713161 100644
--- a/libexec/telnetd/global.c
+++ b/libexec/telnetd/global.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)global.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/global.c,v 1.2.2.1 1999/08/29 15:04:19 peter Exp $";
#endif /* not lint */
/*
diff --git a/libexec/telnetd/pathnames.h b/libexec/telnetd/pathnames.h
index ed8ee887a39e..167218a2efc1 100644
--- a/libexec/telnetd/pathnames.h
+++ b/libexec/telnetd/pathnames.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)pathnames.h 8.1 (Berkeley) 6/4/93
- * $FreeBSD$
+ * $FreeBSD: src/libexec/telnetd/pathnames.h,v 1.5.2.1 1999/08/29 15:04:19 peter Exp $
*/
#if BSD > 43
diff --git a/libexec/telnetd/slc.c b/libexec/telnetd/slc.c
index f19f79fbeb5e..501e5f39acd7 100644
--- a/libexec/telnetd/slc.c
+++ b/libexec/telnetd/slc.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)slc.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/slc.c,v 1.7.2.1 1999/08/29 15:04:19 peter Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/libexec/telnetd/state.c b/libexec/telnetd/state.c
index 476a99219198..cda1b05a7376 100644
--- a/libexec/telnetd/state.c
+++ b/libexec/telnetd/state.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)state.c 8.2 (Berkeley) 12/15/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/state.c,v 1.8.2.1 1999/08/29 15:04:19 peter Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/libexec/telnetd/sys_term.c b/libexec/telnetd/sys_term.c
index d7e9ed394808..a90602d9cdc1 100644
--- a/libexec/telnetd/sys_term.c
+++ b/libexec/telnetd/sys_term.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)sys_term.c 8.2 (Berkeley) 12/15/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/sys_term.c,v 1.20.2.2 1999/08/29 15:04:20 peter Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/libexec/telnetd/telnetd.8 b/libexec/telnetd/telnetd.8
index 0d50eb630dcd..e38015eed460 100644
--- a/libexec/telnetd/telnetd.8
+++ b/libexec/telnetd/telnetd.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)telnetd.8 8.3 (Berkeley) 3/1/94
-.\" $FreeBSD$
+.\" $FreeBSD: src/libexec/telnetd/telnetd.8,v 1.13.2.1 1999/08/29 15:04:20 peter Exp $
.\"
.Dd March 1, 1994
.Dt TELNETD 8
diff --git a/libexec/telnetd/telnetd.c b/libexec/telnetd/telnetd.c
index 5141c2aecf42..71e7bb2ab377 100644
--- a/libexec/telnetd/telnetd.c
+++ b/libexec/telnetd/telnetd.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)telnetd.c 8.2 (Berkeley) 12/15/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/telnetd.c,v 1.15.2.2 1999/08/29 15:04:20 peter Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/libexec/telnetd/termstat.c b/libexec/telnetd/termstat.c
index ee9034413223..60c08e4f8c32 100644
--- a/libexec/telnetd/termstat.c
+++ b/libexec/telnetd/termstat.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)termstat.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/termstat.c,v 1.8.2.1 1999/08/29 15:04:20 peter Exp $";
#endif /* not lint */
#include "telnetd.h"
diff --git a/libexec/telnetd/utility.c b/libexec/telnetd/utility.c
index ee6917340820..230d5d8aa6db 100644
--- a/libexec/telnetd/utility.c
+++ b/libexec/telnetd/utility.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)utility.c 8.2 (Berkeley) 12/15/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/libexec/telnetd/utility.c,v 1.12.2.1 1999/08/29 15:04:21 peter Exp $";
#endif /* not lint */
#ifdef __FreeBSD__