View | Details | Raw Unified | Return to bug 218879
Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	nsca
4
PORTNAME=	nsca
5
PORTVERSION=	2.9.2
5
PORTVERSION=	2.9.2
6
PORTREVISION=	1
6
CATEGORIES=	net-mgmt
7
CATEGORIES=	net-mgmt
7
MASTER_SITES=	SF/nagios/nsca-2.x/nsca-${PORTVERSION}
8
MASTER_SITES=	SF/nagios/nsca-2.x/nsca-${PORTVERSION}
8
9
(-)files/patch-src_nsca.c (+11 lines)
Line 0 Link Here
1
--- src/nsca.c.orig	2017-04-20 16:25:28 UTC
2
+++ src/nsca.c
3
@@ -917,7 +917,7 @@ static void accept_connection(int sock, 
4
 				return;
5
 
6
 			/* try and handle temporary errors */
7
-			if(errno==EWOULDBLOCK || errno==EINTR || errno==ECHILD){
8
+			if(errno==EWOULDBLOCK || errno==EINTR || errno==ECHILD || errno==ECONNABORTED){
9
 				if(mode==MULTI_PROCESS_DAEMON)
10
 					sleep(1);
11
 				else

Return to bug 218879