Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Feb 2015 19:31:11 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379186 - head/net-mgmt/xymon-server
Message-ID:  <201502171931.t1HJVBcj091783@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue Feb 17 19:31:10 2015
New Revision: 379186
URL: https://svnweb.freebsd.org/changeset/ports/379186
QAT: https://qat.redports.org/buildarchive/r379186/

Log:
  Add patch to improve xymonproxy reliability on FreeBSD

Added:
  head/net-mgmt/xymon-server/patch-xymonproxy_xymonproxy.c   (contents, props changed)
Modified:
  head/net-mgmt/xymon-server/Makefile

Modified: head/net-mgmt/xymon-server/Makefile
==============================================================================
--- head/net-mgmt/xymon-server/Makefile	Tue Feb 17 18:06:07 2015	(r379185)
+++ head/net-mgmt/xymon-server/Makefile	Tue Feb 17 19:31:10 2015	(r379186)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xymon
 PORTVERSION=	4.3.18
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	net-mgmt www
 MASTER_SITES=	SF/xymon/Xymon/${PORTVERSION}
 PKGNAMESUFFIX=	-server${PKGNAMESUFFIX2}

Added: head/net-mgmt/xymon-server/patch-xymonproxy_xymonproxy.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/xymon-server/patch-xymonproxy_xymonproxy.c	Tue Feb 17 19:31:10 2015	(r379186)
@@ -0,0 +1,11 @@
+--- xymonproxy/xymonproxy.c.orig	2015-02-17 17:31:01 UTC
++++ xymonproxy/xymonproxy.c
+@@ -964,7 +964,7 @@ int main(int argc, char *argv[])
+ 		}
+ 
+ 		if (combining) {
+-			selecttmo.tv_sec = 0; selecttmo.tv_usec = COMBO_DELAY;
++			selecttmo.tv_sec = 0; selecttmo.tv_usec = COMBO_DELAY / 1000;
+ 		}
+ 		else {
+ 			selecttmo.tv_sec = 1; selecttmo.tv_usec = 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502171931.t1HJVBcj091783>