X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=md5.c;fp=md5.c;h=7673af20c6a027eaa9ea623c7906257488c9bfb3;hb=58d762ea573eb3cfea626bb52ea7a99e24b8a0aa;hp=2cde87d8cb383c0bad95596b6694de7b821e29ff;hpb=98ee16938c903e9d1d5bb9b720f9cfef1fa2ec0a;p=onak.git diff --git a/md5.c b/md5.c index 2cde87d..7673af2 100644 --- a/md5.c +++ b/md5.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Id: md5.c,v 1.2 2003/06/04 20:57:10 noodles Exp $ + * $Id: md5.c,v 1.3 2003/10/04 10:21:41 noodles Exp $ */ /* Written by Ulrich Drepper , 1995. */ /* heavily modified for GnuPG by */ @@ -36,8 +36,8 @@ void md5_init( MD5_CONTEXT *ctx ) { ctx->A = 0x67452301; - ctx->B = 0xefcdab89; - ctx->C = 0x98badcfe; + ctx->B = 0xefcdab89U; + ctx->C = 0x98badcfeU; ctx->D = 0x10325476; ctx->nblocks = 0;