* [Buildroot] svn commit: trunk/buildroot/package/netkittelnet
@ 2008-01-24 3:35 sjhill at uclibc.org
0 siblings, 0 replies; only message in thread
From: sjhill at uclibc.org @ 2008-01-24 3:35 UTC (permalink / raw)
To: buildroot
Author: sjhill
Date: 2008-01-23 19:35:48 -0800 (Wed, 23 Jan 2008)
New Revision: 20896
Log:
Remove instances of bcopy so package will compile.
Added:
trunk/buildroot/package/netkittelnet/netkittelnet-bcopy.patch
Changeset:
Added: trunk/buildroot/package/netkittelnet/netkittelnet-bcopy.patch
===================================================================
--- trunk/buildroot/package/netkittelnet/netkittelnet-bcopy.patch (rev 0)
+++ trunk/buildroot/package/netkittelnet/netkittelnet-bcopy.patch 2008-01-24 03:35:48 UTC (rev 20896)
@@ -0,0 +1,57 @@
+diff -ur netkit-telnet-0.17/telnetd/authenc.c netkit-telnet-0.17-patched/telnetd/authenc.c
+--- netkit-telnet-0.17/telnetd/authenc.c 1999-12-12 08:59:44.000000000 -0600
++++ netkit-telnet-0.17-patched/telnetd/authenc.c 2008-01-23 21:31:45.546793060 -0600
+@@ -35,7 +35,7 @@
+ int len;
+ {
+ if (nfrontp + len < netobuf + BUFSIZ) {
+- bcopy((void *)str, (void *)nfrontp, len);
++ memcpy((void *)nfrontp, (void *)str, len);
+ nfrontp += len;
+ return(len);
+ }
+diff -ur netkit-telnet-0.17/telnetd/slc.c netkit-telnet-0.17-patched/telnetd/slc.c
+--- netkit-telnet-0.17/telnetd/slc.c 1999-12-12 08:59:44.000000000 -0600
++++ netkit-telnet-0.17-patched/telnetd/slc.c 2008-01-23 21:32:07.859024619 -0600
+@@ -432,7 +432,7 @@
+ def_slclen = len;
+ def_slcbuf = malloc((unsigned)len);
+ if (def_slcbuf == NULL) return; /* too bad */
+- bcopy(ptr, def_slcbuf, len);
++ memcpy(def_slcbuf, ptr, len);
+ }
+ }
+ }
+diff -ur netkit-telnet-0.17/telnetd/sys_term.c netkit-telnet-0.17-patched/telnetd/sys_term.c
+--- netkit-telnet-0.17/telnetd/sys_term.c 1999-12-17 08:28:47.000000000 -0600
++++ netkit-telnet-0.17-patched/telnetd/sys_term.c 2008-01-23 21:32:27.583229320 -0600
+@@ -84,7 +84,7 @@
+ */
+ void copy_termbuf(char *cp, int len) {
+ if (len > sizeof(termbuf)) len = sizeof(termbuf);
+- bcopy(cp, (char *)&termbuf, len);
++ memcpy((char *)&termbuf, cp, len);
+ termbuf2 = termbuf;
+ }
+ #endif /* defined(LINEMODE) && defined(TIOCPKT_IOCTL) */
+diff -ur netkit-telnet-0.17/telnetd/utility.c netkit-telnet-0.17-patched/telnetd/utility.c
+--- netkit-telnet-0.17/telnetd/utility.c 1999-12-12 08:59:45.000000000 -0600
++++ netkit-telnet-0.17-patched/telnetd/utility.c 2008-01-23 21:33:02.087587426 -0600
+@@ -248,7 +248,7 @@
+ next = nextitem(next);
+ } while (wewant(next) && (nfrontp > next));
+ length = next-thisitem;
+- bcopy(thisitem, good, length);
++ memcpy(good, thisitem, length);
+ good += length;
+ thisitem = next;
+ } else {
+@@ -351,7 +351,7 @@
+ netflush();
+ }
+
+- bcopy(ptr, nfrontp, len);
++ memcpy(nfrontp, ptr, len);
+ nfrontp += len;
+
+ } /* end of writenet */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-24 3:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-24 3:35 [Buildroot] svn commit: trunk/buildroot/package/netkittelnet sjhill at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox