Fixes compilation error with musl libc: .libs/libtirpc_la-des_impl.o: In function `_des_crypt': src/des_impl.c:591: undefined reference to `__bzero' Signed-off-by: Felix Janda <felix.janda@xxxxxxxxx> --- src/des_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/des_impl.c b/src/des_impl.c index 9dbccaf..dbcfaa1 100644 --- a/src/des_impl.c +++ b/src/des_impl.c @@ -588,7 +588,7 @@ _des_crypt (char *buf, unsigned len, struct desparams *desp) } tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0; tbuf[0] = tbuf[1] = 0; - __bzero (schedule, sizeof (schedule)); + bzero (schedule, sizeof (schedule)); return (1); } -- 2.7.3 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html