summaryrefslogtreecommitdiff
path: root/net/ztelnet/files/patch-al
blob: 6450e7cae415cd8ea7a551f6f6e78310fda84a53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
diff -uNr --exclude=*.orig work.old/ztelnet/telnet/commands.c work/ztelnet/telnet/commands.c
--- work.old/ztelnet/telnet/commands.c	Wed Sep 20 09:03:45 1995
+++ work/ztelnet/telnet/commands.c	Tue Jun 20 22:58:31 2000
@@ -93,6 +93,10 @@
 static int margc;
 static char *margv[20];
 
+    void send_wont();
+    void send_dont();
+    void send_will();
+    void send_do();
     static void
 makeargv()
 {
@@ -230,10 +234,8 @@
     int		nbyte;		/* Number of bytes to send this command */
     int		what;		/* Character to be sent (<0 ==> special) */
 };
+
 
-/* PMS
-extern int
-*/
 static int
 	send_esc P((void)),
 	send_help P((void)),
@@ -370,7 +372,6 @@
 send_docmd(name)
     char *name;
 {
-    void send_do();
     return(send_tncmd(send_do, "do", name));
 }
 
@@ -378,21 +379,18 @@
 send_dontcmd(name)
     char *name;
 {
-    void send_dont();
     return(send_tncmd(send_dont, "dont", name));
 }
     static int
 send_willcmd(name)
     char *name;
 {
-    void send_will();
     return(send_tncmd(send_will, "will", name));
 }
     static int
 send_wontcmd(name)
     char *name;
 {
-    void send_wont();
     return(send_tncmd(send_wont, "wont", name));
 }
 
@@ -590,11 +588,8 @@
     return 1;
 }
 
-/* PMS
-extern int togglehelp P((void));
-*/
-static int togglehelp P((void));
 
+static int togglehelp P((void));
 #if	defined(AUTHENTICATE)
 extern int auth_togdebug P((int));
 #endif
@@ -828,12 +823,8 @@
  */
 
 #ifdef	USE_TERMIO
-#ifdef BYPMS
-struct termios new_tc = { 0 };
-#else
 struct termio new_tc = { 0 };
 #endif
-#endif
 
 struct setlist {
     char *name;				/* name */
@@ -1559,9 +1550,6 @@
 	int	arg;
 };
 
-/* PMS
-extern void slc_help();
-*/
 static void slc_help();
 
 struct slclist SlcList[] = {
@@ -1640,15 +1628,13 @@
 
 extern struct env_lst *
 	env_define P((unsigned char *, unsigned char *));
-extern void
+static void
 	env_undefine P((unsigned char *)),
 	env_export P((unsigned char *)),
 	env_unexport P((unsigned char *)),
 	env_send P((unsigned char *)),
-	env_list P((void));
-
-/* PMS: extern is replaced by static */
-static	void env_help P((void));
+	env_list P((void)),
+	env_help P((void));
 
 struct envlist EnvList[] = {
     { "define",	"Define an environment variable",
@@ -2232,7 +2218,7 @@
     register struct hostent *host = 0;
     struct sockaddr_in sin;
     struct servent *sp = 0;
-    unsigned long temp, inet_addr();
+    unsigned long temp;/*, inet_addr();*/
     extern char *inet_ntoa();
 #if	defined(IP_OPTIONS) && defined(IPPROTO_IP)
     char *srp = 0, *strrchr();
@@ -2489,11 +2475,7 @@
 	envhelp[] =	"change environment variables ('environ ?' for more)",
 	modestring[] = "try to enter line or character mode ('mode ?' for more)";
 
-/* PMS
-extern int	help();
-*/
-
-static int help();
+static int	help();
 
 static Command cmdtab[] = {
 	{ "close",	closehelp,	bye,		1 },