Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 2021 14:24:36 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r564028 - in head/sysutils/syslog-ng: . files
Message-ID:  <202102041424.114EOadi095685@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Thu Feb  4 14:24:36 2021
New Revision: 564028
URL: https://svnweb.freebsd.org/changeset/ports/564028

Log:
  A better way to support RFC5424/IETF syslog format.
  
  12-STABLE, 13-STABLE, and 14-CURRENT now support RFC5424 by default.
  
  PR:		252613
  Reported by:    leres
  Reviewed by:	Peter Czanik <peter.czanik@oneidentity.com>
  		Balabit (a OneIdentity company) / syslog-ng upstream

Added:
  head/sysutils/syslog-ng/files/patch-modules_system-source_system-source.c   (contents, props changed)
Modified:
  head/sysutils/syslog-ng/Makefile   (contents, props changed)

Modified: head/sysutils/syslog-ng/Makefile
==============================================================================
--- head/sysutils/syslog-ng/Makefile	Thu Feb  4 14:24:32 2021	(r564027)
+++ head/sysutils/syslog-ng/Makefile	Thu Feb  4 14:24:36 2021	(r564028)
@@ -3,7 +3,7 @@
 
 PORTNAME=	syslog-ng
 DISTVERSION=	3.30.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	sysutils
 MASTER_SITES=	https://github.com/balabit/syslog-ng/releases/download/syslog-ng-${DISTVERSION}/
 

Added: head/sysutils/syslog-ng/files/patch-modules_system-source_system-source.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/syslog-ng/files/patch-modules_system-source_system-source.c	Thu Feb  4 14:24:36 2021	(r564028)
@@ -0,0 +1,11 @@
+--- modules/system-source/system-source.c.orig 2021-01-13 10:46:26.320565000 +0100
++++ modules/system-source/system-source.c 2021-01-13 10:52:26.747801000 +0100
+@@ -164,7 +164,7 @@
+       strncmp(release, "9.0", 3) == 0)
+     system_sysblock_add_file(sysblock, "/dev/klog", 1, "kernel", "no-parse", NULL, FALSE);
+   else
+-    system_sysblock_add_file(sysblock, "/dev/klog", 0, "kernel", "no-parse", NULL, FALSE);
++    system_sysblock_add_file(sysblock, "/dev/klog", 0, "kernel", NULL, NULL, FALSE);
+ }
+
+ static gboolean



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