fgsch 6e5d467155 update to 2.1pre15. prompted some time ago by
Julian Leyh <oenone at oenone dot de>. sorry for the delay dude.
2004-12-04 01:01:42 +00:00

23 lines
424 B
Plaintext

$OpenBSD: patch-md5_c,v 1.3 2004/12/04 01:01:42 fgsch Exp $
--- md5.c.orig Thu May 9 20:12:59 2002
+++ md5.c Fri Dec 3 20:35:32 2004
@@ -18,6 +18,10 @@
/* This file is a part of the Links project, released under GPL.
*/
+#include "cfg.h"
+
+#ifndef HAVE_MD5INIT
+
#include "links.h"
#ifdef JS
@@ -252,5 +256,7 @@ void MD5Transform(u_int32_t buf[4], u_in
buf[2] += c;
buf[3] += d;
}
+
+#endif
#endif