Pārlūkot izejas kodu

Remove usage of bcopy.

"Steven J. Hill" 18 gadi atpakaļ
vecāks
revīzija
0f372f9e1e
1 mainītis faili ar 31 papildinājumiem un 0 dzēšanām
  1. 31 0
      package/netkitbase/netkitbase-remove-bcopy.patch

+ 31 - 0
package/netkitbase/netkitbase-remove-bcopy.patch

@@ -0,0 +1,31 @@
+diff -ur netkit-base-0.17/inetd/builtins.c netkit-base-0.17-patched/inetd/builtins.c
+--- netkit-base-0.17/inetd/builtins.c	2000-07-22 15:13:07.000000000 -0500
++++ netkit-base-0.17-patched/inetd/builtins.c	2006-12-02 00:50:05.801209342 -0600
+@@ -140,10 +140,10 @@
+ 	text[LINESIZ + 1] = '\n';
+ 	for (rs = ring;;) {
+ 		if ((len = endring - rs) >= LINESIZ)
+-			bcopy(rs, text, LINESIZ);
++			memcpy(text, rs, LINESIZ);
+ 		else {
+-			bcopy(rs, text, len);
+-			bcopy(ring, text + len, LINESIZ - len);
++			memcpy(text, rs, len);
++			memcpy(text + len, ring, LINESIZ - len);
+ 		}
+ 		if (++rs == endring)
+ 			rs = ring;
+@@ -183,10 +183,10 @@
+ 		return;
+ 
+ 	if ((len = endring - rs) >= LINESIZ)
+-		bcopy(rs, text, LINESIZ);
++		memcpy(text, rs, LINESIZ);
+ 	else {
+-		bcopy(rs, text, len);
+-		bcopy(ring, text + len, LINESIZ - len);
++		memcpy(text, rs, len);
++		memcpy(text + len, ring, LINESIZ - len);
+ 	}
+ 	if (++rs == endring)
+ 		rs = ring;