Use AC_MEMCPY

This commit is contained in:
Howard Chu 2007-03-25 04:31:34 +00:00
parent 38a723d442
commit 724784e6cb

View File

@ -224,7 +224,7 @@ ber_encode_oid( BerValue *in, BerValue *out )
}
if ( i ) {
len -= i;
memcpy( der, der+i, len );
AC_MEMCPY( der, der+i, len );
}
der += len;
}