summaryrefslogtreecommitdiff
path: root/lib/ZFmtRaw.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ZFmtRaw.c')
-rw-r--r--lib/ZFmtRaw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ZFmtRaw.c b/lib/ZFmtRaw.c
index e5da26b..8d0844f 100644
--- a/lib/ZFmtRaw.c
+++ b/lib/ZFmtRaw.c
@@ -37,8 +37,8 @@ Code_t ZFormatRawNotice(notice, buffer, ret_len)
if (!(*buffer = (char *) malloc((unsigned) *ret_len)))
return (ENOMEM);
- bcopy(header, *buffer, hdrlen);
- bcopy(notice->z_message, *buffer+hdrlen, notice->z_message_len);
+ _BCOPY(header, *buffer, hdrlen);
+ _BCOPY(notice->z_message, *buffer+hdrlen, notice->z_message_len);
return (ZERR_NONE);
}