mstpd: fix compilation with uClibc-ng

bcopy/bzero are no longer available.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-08-31 00:34:45 -07:00
parent 47363d1b62
commit ecfe85ab28
2 changed files with 18 additions and 1 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mstpd
PKG_VERSION:=0.0.8
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/mstpd/mstpd/tar.gz/$(PKG_VERSION)?

View File

@ -0,0 +1,17 @@
--- a/hmac_md5.c
+++ b/hmac_md5.c
@@ -356,10 +356,10 @@ caddr_t digest; /* caller digest to be filled in */
*/
/* start out by storing key in pads */
- bzero(k_ipad, sizeof k_ipad);
- bzero(k_opad, sizeof k_opad);
- bcopy(key, k_ipad, key_len);
- bcopy( key, k_opad, key_len);
+ memset(k_ipad, 0, sizeof k_ipad);
+ memset(k_opad, 0, sizeof k_opad);
+ memcpy(k_ipad, key, key_len);
+ memcpy(k_opad, key, key_len);
/* XOR key with ipad and opad values */
for(i = 0; i < 64; ++i)