summaryrefslogtreecommitdiff
path: root/lib/ZFmtAuth.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/ZFmtAuth.c
parent395a50757804326dc40eb0c276fe615399845e4c (diff)
Changed bcopy to memcpy [ANSI]
Diffstat (limited to 'lib/ZFmtAuth.c')
-rw-r--r--lib/ZFmtAuth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ZFmtAuth.c b/lib/ZFmtAuth.c
index 89416d0..cdf7be4 100644
--- a/lib/ZFmtAuth.c
+++ b/lib/ZFmtAuth.c
@@ -57,7 +57,7 @@ Code_t ZFormatAuthenticNotice(notice, buffer, buffer_len, len, session)
if (newnotice.z_message_len+hdrlen > buffer_len)
return (ZERR_PKTLEN);
- _BCOPY(newnotice.z_message, ptr, newnotice.z_message_len);
+ (void) memcpy(ptr, newnotice.z_message, newnotice.z_message_len);
*len = hdrlen+newnotice.z_message_len;