From 81d5367062a4e79d73f24cf88ba9111cd3220de8 Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Sat, 1 Jan 2000 16:37:03 +0000 Subject: [PATCH] Grr...teach me not to test before committing... --- common/net_com.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/net_com.c b/common/net_com.c index 498f53b..fac4f1a 100644 --- a/common/net_com.c +++ b/common/net_com.c @@ -50,6 +50,6 @@ void Com_BlockFullChecksum (void *buffer, int len, unsigned char *outbuf) mdfour_begin (&md); mdfour_update (&md, (unsigned char *) buffer, len); - mdfour_final (&md, outbuf); + mdfour_result (&md, outbuf); // mdfour ( outbuf, (unsigned char *) buffer, len ); }