diff options
author | vd <vd@FreeBSD.org> | 2006-01-24 17:18:44 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2006-01-24 17:18:44 +0800 |
commit | ffbaf44c9b5695486558ef3e2986cf85450aaf97 (patch) | |
tree | fae38d8ef9deab97f879ca87b2d7f2678f7def7b | |
parent | d2ebc1c0b3e588f89ed0d652b8dc76146fdb5e24 (diff) | |
download | freebsd-ports-gnome-ffbaf44c9b5695486558ef3e2986cf85450aaf97.tar.gz freebsd-ports-gnome-ffbaf44c9b5695486558ef3e2986cf85450aaf97.tar.zst freebsd-ports-gnome-ffbaf44c9b5695486558ef3e2986cf85450aaf97.zip |
Change facility from daemon to security, because daemon.info goes to
devnull by default
PR: ports/91047
Submitted by: PR: Brian Candler <B.Candler@pobox.com>, patch: VANHULLEBUS Yvan <vanhu@netasq.com> (maintainer)
Approved by: garga (mentor)
-rw-r--r-- | security/ipsec-tools/Makefile | 2 | ||||
-rw-r--r-- | security/ipsec-tools/files/patch-src__racoon__plog.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/security/ipsec-tools/Makefile b/security/ipsec-tools/Makefile index e1c22997740d..c24a020b638c 100644 --- a/security/ipsec-tools/Makefile +++ b/security/ipsec-tools/Makefile @@ -12,7 +12,7 @@ PORTNAME= ipsec-tools PORTVERSION= 0.6.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ipsec-tools diff --git a/security/ipsec-tools/files/patch-src__racoon__plog.c b/security/ipsec-tools/files/patch-src__racoon__plog.c new file mode 100644 index 000000000000..72c9df5d5612 --- /dev/null +++ b/security/ipsec-tools/files/patch-src__racoon__plog.c @@ -0,0 +1,12 @@ +--- src/racoon/plog.c.orig Fri Dec 30 11:28:03 2005 ++++ src/racoon/plog.c Fri Dec 30 11:28:18 2005 +@@ -224,7 +224,7 @@ ploginit() + return; + } + +- openlog(pname, LOG_NDELAY, LOG_DAEMON); ++ openlog(pname, LOG_NDELAY, LOG_SECURITY); + } + + void + |