diff options
author | Shaun Amott <shaun@FreeBSD.org> | 2007-09-26 19:10:54 +0000 |
---|---|---|
committer | Shaun Amott <shaun@FreeBSD.org> | 2007-09-26 19:10:54 +0000 |
commit | b5688d6793f9cf2e62f083207c5f597f3c9c59f8 (patch) | |
tree | 06325b553e1b75ff4e33bd53f193e8919ebf0844 /news/inn | |
parent | 21a48d3022f2cffc40697ba9f20eddb46fcc95bb (diff) |
Notes
Diffstat (limited to 'news/inn')
-rw-r--r-- | news/inn/Makefile | 2 | ||||
-rw-r--r-- | news/inn/files/patch-innfeed_endpoint.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 45f4b7bb94ae..948ebb2a6f57 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -7,7 +7,7 @@ PORTNAME?= inn PORTVERSION?= 2.4.3 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= news ipv6 MASTER_SITES?= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR?= ${PORTNAME} diff --git a/news/inn/files/patch-innfeed_endpoint.c b/news/inn/files/patch-innfeed_endpoint.c new file mode 100644 index 000000000000..b50fb3011898 --- /dev/null +++ b/news/inn/files/patch-innfeed_endpoint.c @@ -0,0 +1,11 @@ +--- innfeed/endpoint.c.orig Mon Mar 20 04:14:57 2006 ++++ innfeed/endpoint.c Wed Sep 26 20:02:26 2007 +@@ -1644,7 +1644,7 @@ + if (sigHandlers == NULL) + { + sigHandlers = xmalloc (sizeof(sigfn) * NSIG) ; +- sigFlags = xmalloc (sizeof(int) * NSIG) ; ++ sigFlags = xmalloc (sizeof(sig_atomic_t) * NSIG) ; + for (i = 0 ; i < NSIG ; i++) + { + sigHandlers [i] = NULL ; |