Hello community,

here is the log from the commit of package libopensync for openSUSE:Factory 
checked in at 2013-06-25 17:14:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libopensync (Old)
 and      /work/SRC/openSUSE:Factory/.libopensync.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libopensync"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libopensync/libopensync.changes  2012-10-11 
11:02:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libopensync.new/libopensync.changes     
2013-06-25 17:15:15.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jun 18 16:30:43 UTC 2013 - [email protected]
+
+- libopensync-wrong-memset.patch: fix build with gcc 48
+  wrong use of memset.
+
+-------------------------------------------------------------------

New:
----
  libopensync-wrong-memset.patch

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

Other differences:
------------------
++++++ libopensync.spec ++++++
--- /var/tmp/diff_new_pack.53gmRf/_old  2013-06-25 17:15:16.000000000 +0200
+++ /var/tmp/diff_new_pack.53gmRf/_new  2013-06-25 17:15:16.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libopensync
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -37,6 +37,7 @@
 Patch4:         libopensync-swig-fix.diff
 Patch5:         libopensync-fixed-unused-variables.diff
 Patch6:         libopensync-swig-2x.patch
+Patch7:         libopensync-wrong-memset.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %define prefix   /usr
 
@@ -98,7 +99,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6
-
+%patch7
 %build
 autoreconf -sif
 # -fno-strict-aliasing needed for python wrapper

++++++ libopensync-wrong-memset.patch ++++++
--- formats/vformats-xml/vformat.c.orig
+++ formats/vformats-xml/vformat.c
@@ -1760,7 +1760,7 @@ static void base64_init(char *rank)
 {
        int i;
 
-       memset(rank, 0xff, sizeof(rank));
+       memset(rank, 0xff, strlen(rank));
        for (i=0;i<64;i++) {
                rank[(unsigned int)base64_alphabet[i]] = i;
        }
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to