1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/mail/dma/files/patch-spool.c
William Grzybowski fff82c442c mail/dma: update to 0.9
- Update to 0.9 [1]
- USE_GITHUB framework
- Remove useless LICENSE_FILE
- Trim Makefile header
- Mark IGNORE for 8.x

PR:		ports/182058
Submitted by:	bz (maintainer)
2013-09-16 13:44:26 +00:00

12 lines
385 B
C

--- spool.c.orig 2013-06-03 14:03:15.000000000 +0000
+++ spool.c 2013-08-22 11:07:47.000000000 +0000
@@ -415,7 +415,7 @@ flushqueue_since(unsigned int period)
return (0);
/* Did the flush file get touched within the last period seconds? */
- if (st.st_mtim.tv_sec + period >= now.tv_sec)
+ if (st.st_mtim.tv_sec + (int)period >= now.tv_sec)
return (1);
else
return (0);