From b30839620e5379e357b55c8c5bee61b5a7144b59 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Fri, 19 Nov 1993 10:25:26 +0000 Subject: Changed bcopy to memcpy [ANSI] --- lib/ZFmtAuth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ZFmtAuth.c') 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; -- cgit v1.2.3