summaryrefslogtreecommitdiff
path: root/lib/ZFmtSmRaw.c
diff options
context:
space:
mode:
authorGravatar Richard Basch <probe@mit.edu>1993-11-19 10:25:26 +0000
committerGravatar Richard Basch <probe@mit.edu>1993-11-19 10:25:26 +0000
commitb30839620e5379e357b55c8c5bee61b5a7144b59 (patch)
tree7fddf6e8f2572795c3ba7ba1ece217542c918b23 /lib/ZFmtSmRaw.c
parent395a50757804326dc40eb0c276fe615399845e4c (diff)
Changed bcopy to memcpy [ANSI]
Diffstat (limited to 'lib/ZFmtSmRaw.c')
-rw-r--r--lib/ZFmtSmRaw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ZFmtSmRaw.c b/lib/ZFmtSmRaw.c
index 039591c..7269b42 100644
--- a/lib/ZFmtSmRaw.c
+++ b/lib/ZFmtSmRaw.c
@@ -37,7 +37,7 @@ Code_t ZFormatSmallRawNotice(notice, buffer, ret_len)
if (*ret_len > Z_MAXPKTLEN)
return (ZERR_PKTLEN);
- _BCOPY(notice->z_message, buffer+hdrlen, notice->z_message_len);
+ (void) memcpy(buffer+hdrlen, notice->z_message, notice->z_message_len);
return (ZERR_NONE);
}