openbsd-ports/databases/redis/patches/patch-ae_c
2010-11-17 08:44:54 +00:00

15 lines
312 B
Plaintext

$OpenBSD: patch-ae_c,v 1.1 2010/11/17 08:44:54 dcoppa Exp $
missing #include for memset(3)
--- ae.c.orig Wed Nov 17 08:38:00 2010
+++ ae.c Wed Nov 17 08:38:15 2010
@@ -35,6 +35,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
#include "ae.h"
#include "zmalloc.h"