summaryrefslogtreecommitdiffstats
path: root/src/appl/telnet/telnet
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl/telnet/telnet')
-rw-r--r--src/appl/telnet/telnet/authenc.c4
-rw-r--r--src/appl/telnet/telnet/commands.c4
-rw-r--r--src/appl/telnet/telnet/main.c4
-rw-r--r--src/appl/telnet/telnet/network.c4
-rw-r--r--src/appl/telnet/telnet/ring.c4
-rw-r--r--src/appl/telnet/telnet/sys_bsd.c4
-rw-r--r--src/appl/telnet/telnet/telnet.c4
-rw-r--r--src/appl/telnet/telnet/terminal.c4
-rw-r--r--src/appl/telnet/telnet/tn3270.c4
-rw-r--r--src/appl/telnet/telnet/utilities.c4
10 files changed, 10 insertions, 30 deletions
diff --git a/src/appl/telnet/telnet/authenc.c b/src/appl/telnet/telnet/authenc.c
index 545df78005..351b8f2218 100644
--- a/src/appl/telnet/telnet/authenc.c
+++ b/src/appl/telnet/telnet/authenc.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)authenc.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)authenc.c 8.1 (Berkeley) 6/6/93 */
#if defined(AUTHENTICATION) || defined(ENCRYPTION)
#include <sys/types.h>
diff --git a/src/appl/telnet/telnet/commands.c b/src/appl/telnet/telnet/commands.c
index 29e6cd774a..42c6e53287 100644
--- a/src/appl/telnet/telnet/commands.c
+++ b/src/appl/telnet/telnet/commands.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)commands.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)commands.c 8.1 (Berkeley) 6/6/93 */
#if defined(unix)
#include <sys/param.h>
diff --git a/src/appl/telnet/telnet/main.c b/src/appl/telnet/telnet/main.c
index 07e09aebf0..432227e875 100644
--- a/src/appl/telnet/telnet/main.c
+++ b/src/appl/telnet/telnet/main.c
@@ -37,9 +37,7 @@ char copyright[] =
All rights reserved.\n";
#endif /* not lint */
-#ifndef lint
-static char sccsid[] = "@(#)main.c 5.5 (Berkeley) 12/18/92";
-#endif /* not lint */
+/* based on @(#)main.c 5.5 (Berkeley) 12/18/92 */
#include <sys/types.h>
diff --git a/src/appl/telnet/telnet/network.c b/src/appl/telnet/telnet/network.c
index c71b63dd5e..fc7dc5ea7d 100644
--- a/src/appl/telnet/telnet/network.c
+++ b/src/appl/telnet/telnet/network.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)network.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)network.c 8.1 (Berkeley) 6/6/93 */
#include <sys/types.h>
#include <sys/socket.h>
diff --git a/src/appl/telnet/telnet/ring.c b/src/appl/telnet/telnet/ring.c
index 1080d121a2..93d379e777 100644
--- a/src/appl/telnet/telnet/ring.c
+++ b/src/appl/telnet/telnet/ring.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)ring.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)ring.c 8.1 (Berkeley) 6/6/93 */
/*
* This defines a structure for a ring buffer.
diff --git a/src/appl/telnet/telnet/sys_bsd.c b/src/appl/telnet/telnet/sys_bsd.c
index 26d1d74e72..2e52986f0e 100644
--- a/src/appl/telnet/telnet/sys_bsd.c
+++ b/src/appl/telnet/telnet/sys_bsd.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)sys_bsd.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)sys_bsd.c 8.1 (Berkeley) 6/6/93 */
/*
* The following routines try to encapsulate what is system dependent
diff --git a/src/appl/telnet/telnet/telnet.c b/src/appl/telnet/telnet/telnet.c
index 0b5f97357b..f7994fa980 100644
--- a/src/appl/telnet/telnet/telnet.c
+++ b/src/appl/telnet/telnet/telnet.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)telnet.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)telnet.c 8.1 (Berkeley) 6/6/93 */
#include <sys/types.h>
diff --git a/src/appl/telnet/telnet/terminal.c b/src/appl/telnet/telnet/terminal.c
index b6d3b864ab..a72852c2d4 100644
--- a/src/appl/telnet/telnet/terminal.c
+++ b/src/appl/telnet/telnet/terminal.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)terminal.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)terminal.c 8.1 (Berkeley) 6/6/93 */
#include <arpa/telnet.h>
#include <sys/types.h>
diff --git a/src/appl/telnet/telnet/tn3270.c b/src/appl/telnet/telnet/tn3270.c
index 1f285cf987..77aedaf899 100644
--- a/src/appl/telnet/telnet/tn3270.c
+++ b/src/appl/telnet/telnet/tn3270.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)tn3270.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)tn3270.c 8.1 (Berkeley) 6/6/93 */
#include <sys/types.h>
#include <arpa/telnet.h>
diff --git a/src/appl/telnet/telnet/utilities.c b/src/appl/telnet/telnet/utilities.c
index 0514866924..2e973e0311 100644
--- a/src/appl/telnet/telnet/utilities.c
+++ b/src/appl/telnet/telnet/utilities.c
@@ -31,9 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static char sccsid[] = "@(#)utilities.c 8.1 (Berkeley) 6/6/93";
-#endif /* not lint */
+/* based on @(#)utilities.c 8.1 (Berkeley) 6/6/93 */
#define TELOPTS
#define TELCMDS