1 diff -ur netkit-base-0.17/inetd/builtins.c netkit-base-0.17-patched/inetd/builtins.c
2 --- netkit-base-0.17/inetd/builtins.c 2000-07-22 15:13:07.000000000 -0500
3 +++ netkit-base-0.17-patched/inetd/builtins.c 2006-12-02 00:50:05.801209342 -0600
5 text[LINESIZ + 1] = '\n';
7 if ((len = endring - rs) >= LINESIZ)
8 - bcopy(rs, text, LINESIZ);
9 + memcpy(text, rs, LINESIZ);
11 - bcopy(rs, text, len);
12 - bcopy(ring, text + len, LINESIZ - len);
13 + memcpy(text, rs, len);
14 + memcpy(text + len, ring, LINESIZ - len);
21 if ((len = endring - rs) >= LINESIZ)
22 - bcopy(rs, text, LINESIZ);
23 + memcpy(text, rs, LINESIZ);
25 - bcopy(rs, text, len);
26 - bcopy(ring, text + len, LINESIZ - len);
27 + memcpy(text, rs, len);
28 + memcpy(text + len, ring, LINESIZ - len);