*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: md4c.c,v 1.8 1997/01/07 10:09:00 niklas Exp $";
+static char rcsid[] = "$OpenBSD: md4c.c,v 1.9 1997/04/30 05:56:05 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <string.h>
/* Save number of bits */
hi = context->count >> 32;
- lo = context->count & 0xffffffff;
+ lo = (u_int32_t)context->count & 0xffffffff;
Encode (bits, &lo, 4);
Encode (bits + 4, &hi, 4);
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: md5c.c,v 1.8 1997/01/07 10:09:00 niklas Exp $";
+static char rcsid[] = "$OpenBSD: md5c.c,v 1.9 1997/04/30 05:56:06 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <string.h>
/* Save number of bits */
hi = context->count >> 32;
- lo = context->count & 0xffffffff;
+ lo = (u_int32_t)context->count & 0xffffffff;
Encode (bits, &lo, 4);
Encode (bits + 4, &hi, 4);