summaryrefslogtreecommitdiff
path: root/net/SSLtelnet/files/patch-am
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-13 03:36:39 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-13 03:36:39 +0000
commit9fc1c3c4c22d583c467bdc02dead536f164ce632 (patch)
tree8d20677234fd8e4f0c1deec136f9fed497454d7f /net/SSLtelnet/files/patch-am
parentThe mh port was marked FORBIDDEN for security reasons 2 years and 7 months (diff)
The SSLtelnet port was marked FORBIDDEN for security reasons 13 months ago.
Remove it.
Notes
Notes: svn path=/head/; revision=67930
Diffstat (limited to 'net/SSLtelnet/files/patch-am')
-rw-r--r--net/SSLtelnet/files/patch-am43
1 files changed, 0 insertions, 43 deletions
diff --git a/net/SSLtelnet/files/patch-am b/net/SSLtelnet/files/patch-am
deleted file mode 100644
index a385599eea64..000000000000
--- a/net/SSLtelnet/files/patch-am
+++ /dev/null
@@ -1,43 +0,0 @@
---- telnet/commands.c.old Sun Jan 7 10:03:38 2001
-+++ telnet/commands.c Sun Jan 7 10:16:53 2001
-@@ -55,7 +55,7 @@
- #include <netdb.h>
- #include <ctype.h>
- #include <pwd.h>
--#include <varargs.h>
-+#include <stdarg.h>
- #include <errno.h>
-
- #include <arpa/telnet.h>
-@@ -100,7 +100,8 @@
- extern char **genget();
- extern int Ambiguous();
-
--static call();
-+typedef int (*intrtn_t)();
-+static int call(intrtn_t, ...);
-
- typedef struct {
- char *name; /* command name */
-@@ -2550,18 +2551,14 @@
- */
-
- /*VARARGS1*/
-- static
--call(va_alist)
-- va_dcl
-+ static int
-+call(intrtn_t routine, ...)
- {
- va_list ap;
-- typedef int (*intrtn_t)();
-- intrtn_t routine;
- char *args[100];
- int argno = 0;
-
-- va_start(ap);
-- routine = (va_arg(ap, intrtn_t));
-+ va_start(ap, routine);
- while ((args[argno++] = va_arg(ap, char *)) != 0) {
- ;
- }