svn commit: r407458 - in head/net/dhcp6: . files

Renato Botelho garga at FreeBSD.org
Fri Jan 29 07:39:17 UTC 2016


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;
+ 		}
+ 	}
+ }


More information about the svn-ports-head mailing list