Hello community,

here is the log from the commit of package xmlrpc-c for openSUSE:Factory 
checked in at 2016-08-03 11:43:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xmlrpc-c (Old)
 and      /work/SRC/openSUSE:Factory/.xmlrpc-c.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xmlrpc-c"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xmlrpc-c/xmlrpc-c.changes        2015-11-18 
22:34:46.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.xmlrpc-c.new/xmlrpc-c.changes   2016-08-03 
11:43:18.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jul 27 10:16:05 UTC 2016 - sch...@suse.de
+
+- narrowing.patch: fix invalid narrowing conversion
+
+-------------------------------------------------------------------

New:
----
  narrowing.patch

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

Other differences:
------------------
++++++ xmlrpc-c.spec ++++++
--- /var/tmp/diff_new_pack.TZTDDp/_old  2016-08-03 11:43:19.000000000 +0200
+++ /var/tmp/diff_new_pack.TZTDDp/_new  2016-08-03 11:43:19.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmlrpc-c
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 #SVN-Clone:    http://svn.code.sf.net/p/xmlrpc-c/code/stable/
 #Snapshot:     r2540
 Source:         
http://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/%{version}/%{name}-%{version}.tgz
+Patch:          narrowing.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
@@ -194,6 +195,7 @@
 
 %prep
 %setup -q 
+%patch -p1
 
 %build
 export CFLAGS_PERSONAL="%{optflags}"

++++++ narrowing.patch ++++++
Index: xmlrpc-c-1.33.18/src/cpp/base64.cpp
===================================================================
--- xmlrpc-c-1.33.18.orig/src/cpp/base64.cpp
+++ xmlrpc-c-1.33.18/src/cpp/base64.cpp
@@ -14,7 +14,7 @@ using namespace xmlrpc_c;
 
 namespace {
 
-char const table_a2b_base64[] = {
+signed char const table_a2b_base64[] = {
     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
     -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,

Reply via email to