openbsd-ports/www/snownews/patches/patch-digcalc_c
naddy 7e62e0cf6a - use MD5* functions from libc; fixes breakage on some archs
- update links in DESCR; from cathcart@
2006-02-20 16:33:55 +00:00

15 lines
327 B
Plaintext

$OpenBSD: patch-digcalc_c,v 1.1 2006/02/20 16:33:55 naddy Exp $
--- digcalc.c.orig Thu Feb 16 22:13:28 2006
+++ digcalc.c Thu Feb 16 22:13:48 2006
@@ -14,8 +14,8 @@
* MD5 implementation rather than using RSA's.
*/
-#include "md5.h"
-
+#include <sys/types.h>
+#include <md5.h>
#include <string.h>
#include "digcalc.h"