summaryrefslogtreecommitdiff
path: root/comms/kermit
diff options
context:
space:
mode:
authortron <tron>1999-10-06 22:27:15 +0000
committertron <tron>1999-10-06 22:27:15 +0000
commitd60fb005336ddf8afe80c82dd2b9db3dbec8bc7b (patch)
tree6c8fc9ef19d3cbf2b8ff96362c0e7a4c9e7199a1 /comms/kermit
parent8f5926926767877271d3f74f1d0a682665c8d6b2 (diff)
downloadpkgsrc-d60fb005336ddf8afe80c82dd2b9db3dbec8bc7b.tar.gz
Add RCS Id and remove duplicate patch sections which caused patch to fail.
Diffstat (limited to 'comms/kermit')
-rw-r--r--comms/kermit/patches/patch-ad35
1 files changed, 2 insertions, 33 deletions
diff --git a/comms/kermit/patches/patch-ad b/comms/kermit/patches/patch-ad
index a6fcb5f9abb..fabb729d6ab 100644
--- a/comms/kermit/patches/patch-ad
+++ b/comms/kermit/patches/patch-ad
@@ -1,36 +1,5 @@
---- ckutio.c.orig Mon Nov 25 11:20:49 1996
-+++ ckutio.c Wed Oct 6 22:59:54 1999
-@@ -4572,6 +4572,7 @@ ttsspd(cps) int cps; {
- #endif /* MINIX */
- case 240: s = B2400; break;
- case 480: s = B4800; break;
-+ case 720: s = B7200; break;
- #ifndef MINIX
- case 888: s = B75; s2 = B1200; break; /* 888 = 75/1200 split speed */
- #endif /* MINIX */
-@@ -4918,6 +4919,10 @@ ttgspd() { /* Get current serial devi
- case B4800: ss = 4800L; break;
- #endif /* B4800 */
-
-+#ifdef B7200
-+ case B7200: ss = 7200L; break;
-+#endif /* B7200 */
-+
- #ifdef B9600
- case B9600: ss = 9600L; break;
- #endif /* B9600 */
-@@ -7174,9 +7179,9 @@ ztime(s) char **s; {
- #ifdef ATTSV /* AT&T way */
- /* extern long time(); */ /* Theoretically these should */
- char *ctime(); /* already been dcl'd in <time.h> */
-- long clock_storage;
-+ time_t clock_storage;
- clock_storage = time(
--#ifdef IRIX60
-+#if defined(IRIX60) || defined(__NetBSD__)
- (time_t *)
- #else
- (long *)
+$NetBSD: patch-ad,v 1.5 1999/10/06 22:27:15 tron Exp $
+
--- ckutio.c.orig Mon Nov 25 11:20:49 1996
+++ ckutio.c Wed Oct 6 23:02:25 1999
@@ -4572,6 +4572,9 @@ ttsspd(cps) int cps; {