diff options
author | garga <garga@FreeBSD.org> | 2016-01-29 15:39:15 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2016-01-29 15:39:15 +0800 |
commit | 7ecde607cc3a6bb935445f80d6528b781ca70426 (patch) | |
tree | 3d86bf6b591fd80fde062943e8e31abad25bb11d | |
parent | 3eef96571ef71acb8b56736a8ea95489b431b557 (diff) | |
download | freebsd-ports-gnome-7ecde607cc3a6bb935445f80d6528b781ca70426.tar.gz freebsd-ports-gnome-7ecde607cc3a6bb935445f80d6528b781ca70426.tar.zst freebsd-ports-gnome-7ecde607cc3a6bb935445f80d6528b781ca70426.zip |
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
-rw-r--r-- | net/dhcp6/Makefile | 2 | ||||
-rw-r--r-- | net/dhcp6/files/patch-common.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/net/dhcp6/Makefile b/net/dhcp6/Makefile index 86834dead978..356094664995 100644 --- a/net/dhcp6/Makefile +++ b/net/dhcp6/Makefile @@ -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} diff --git a/net/dhcp6/files/patch-common.c b/net/dhcp6/files/patch-common.c new file mode 100644 index 000000000000..f5e725bb5584 --- /dev/null +++ b/net/dhcp6/files/patch-common.c @@ -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; + } + } + } |