1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Oops, forgot to add this patch file before committing ports/mail/mailagent/Makefile Rev 1.39.

This patch fixes an infinite loop with the filter on AMD64.
Submitted by:	Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
PR:		94585
This commit is contained in:
Masafumi Max NAKANE 2006-05-08 06:47:04 +00:00
parent 72b59f2558
commit 8d22c09f60
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=161677

View File

@ -0,0 +1,15 @@
--- agent/filter/logfile.c.orig Fri Mar 17 12:59:44 2006
+++ agent/filter/logfile.c Fri Mar 17 13:02:25 2006
@@ -47,6 +47,12 @@
#include <stdio.h>
#include <sys/types.h>
+#ifdef I_STRING
+#include <string.h>
+#else
+#include <strings.h>
+#endif
+
#ifdef I_TIME
# include <time.h>
#endif