Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jan 2016 07:39:15 +0000 (UTC)
From:      Renato Botelho <garga@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r407458 - in head/net/dhcp6: . files
Message-ID:  <201601290739.u0T7dFQu005037@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: garga
Date: Fri Jan 29 07:39:15 2016
New Revision: 407458
URL: https://svnweb.freebsd.org/changeset/ports/407458

Log:
  Add a patch to make it possible to increase verbosity even in daemon mode
  
  Approved by:	hrs (maintainer)
  Obtained from:	pfSense
  Sponsored by:	Rubicon Communications (Netgate)
  Differential Revision:	https://reviews.freebsd.org/D5105

Added:
  head/net/dhcp6/files/patch-common.c   (contents, props changed)
Modified:
  head/net/dhcp6/Makefile

Modified: head/net/dhcp6/Makefile
==============================================================================
--- head/net/dhcp6/Makefile	Fri Jan 29 07:18:44 2016	(r407457)
+++ head/net/dhcp6/Makefile	Fri Jan 29 07:39:15 2016	(r407458)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dhcp6
 PORTVERSION=	20080615
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	net ipv6
 MASTER_SITES=	SF/wide-dhcpv6/wide-dhcpv6/wide-dhcpv6-${PORTVERSION}
 DISTNAME=	wide-dhcpv6-${PORTVERSION}

Added: head/net/dhcp6/files/patch-common.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dhcp6/files/patch-common.c	Fri Jan 29 07:39:15 2016	(r407458)
@@ -0,0 +1,12 @@
+--- common.c.orig	2016-01-28 11:27:18 UTC
++++ common.c
+@@ -3202,6 +3202,9 @@ setloglevel(debuglevel)
+ 		case 1:
+ 			setlogmask(LOG_UPTO(LOG_INFO));
+ 			break;
++		case 2:
++			setlogmask(LOG_UPTO(LOG_DEBUG));
++			break;
+ 		}
+ 	}
+ }



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