Hello community,

here is the log from the commit of package rsyslog for openSUSE:Factory checked 
in at 2015-03-03 11:14:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rsyslog (Old)
 and      /work/SRC/openSUSE:Factory/.rsyslog.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rsyslog"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rsyslog/rsyslog.changes  2015-02-16 
21:14:36.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rsyslog.new/rsyslog.changes     2015-03-03 
11:15:25.000000000 +0100
@@ -1,0 +2,17 @@
+Sun Mar  1 19:13:25 UTC 2015 - [email protected]
+
+- rsyslog 8.8.0:
+  - omkafka: add support for dynamic topics and auto partitioning
+  - imtcp/imptcp: support for broken Cisco ASA TCP syslog framing
+  - omfwd: more detailled error messages in case of UDP send error
+  - TLS syslog: enable capability to turn on GnuTLS debug logging
+  - bugfix: $AbortOnUncleanConfig did not work
+  - improve rsyslogd -v output and error message with meta information
+  - bugfix imtcp: octet-counted framing cannot be turned off
+  - bugfix: build problems on Illuminos
+  - bugfix: invalid data size for iMaxLine global property
+  - bugfix: negative values for maxMessageSize global parameter were permitted
+- add upstream patch rsyslog-8.8.0-nonvoid-function-return.patch
+  to fix compiler warnings/errors
+
+-------------------------------------------------------------------

Old:
----
  rsyslog-8.7.0.tar.gz
  rsyslog-doc-8.7.0.tar.gz

New:
----
  rsyslog-8.8.0-nonvoid-function-return.patch
  rsyslog-8.8.0.tar.gz
  rsyslog-doc-8.8.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rsyslog.spec ++++++
--- /var/tmp/diff_new_pack.tdtYYb/_old  2015-03-03 11:15:26.000000000 +0100
+++ /var/tmp/diff_new_pack.tdtYYb/_new  2015-03-03 11:15:26.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rsyslog
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 Summary:        The enhanced syslogd for Linux and Unix
 License:        (GPL-3.0+ and Apache-2.0)
 Group:          System/Daemons
-Version:        8.7.0
+Version:        8.8.0
 Release:        0
 %if 0%{?suse_version} >= 1210
 %bcond_without  systemd
@@ -212,6 +212,7 @@
 
 # PATCH-FIX-OPENSUSE rsyslog-unit.patch [email protected] Customize 
upstream systemd unit for openSUSE needs.
 Patch0:         rsyslog-unit.patch
+Patch1:         rsyslog-8.8.0-nonvoid-function-return.patch
 
 # this is a dirty hack since % dir does only work for the specified directory 
and nothing above
 # but I want to be able to switch this to /etc/apparmor.d once the profiles 
received more testing
@@ -507,6 +508,7 @@
 %prep
 %setup -q -n %{name}-%{upstream_version} -a 14
 %patch0 -p1
+%patch1 -p1
 #
 %if %{with systemd}
 for file in rsyslog-service-prepare; do

++++++ rsyslog-8.8.0-nonvoid-function-return.patch ++++++
>From 2a1e9668f8d4c0383ae017a99bc77b26cf8496c9 Mon Sep 17 00:00:00 2001
From: Rainer Gerhards <[email protected]>
Date: Sun, 1 Mar 2015 14:25:47 +0100
Subject: [PATCH] non-void function setMaxLine does not return anything

closes https://github.com/rsyslog/rsyslog/issues/255
---
 runtime/glbl.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/runtime/glbl.c b/runtime/glbl.c
index f0750a2..01f82d4 100644
--- a/runtime/glbl.c
+++ b/runtime/glbl.c
@@ -361,7 +361,7 @@ static rsRetVal setWorkDir(void __attribute__((unused)) 
*pVal, uchar *pNewVal)
 
 
 /* This function is used both by legacy and RainerScript conf. It is a real 
setter. */
-static rsRetVal
+static void
 setMaxLine(const int64_t iNew)
 {
        if(iNew < 128) {
@@ -381,9 +381,8 @@ setMaxLine(const int64_t iNew)
 static rsRetVal
 legacySetMaxMessageSize(void __attribute__((unused)) *pVal, int64_t iNew)
 {
-       DEFiRet;
-       iRet = setMaxLine(iNew);
-       RETiRet;
+       setMaxLine(iNew);
+       return RS_RET_OK;
 }
 
 static rsRetVal
++++++ rsyslog-8.7.0.tar.gz -> rsyslog-8.8.0.tar.gz ++++++
++++ 5188 lines of diff (skipped)

++++++ rsyslog-doc-8.7.0.tar.gz -> rsyslog-doc-8.8.0.tar.gz ++++++
++++ 9849 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to