Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package fuse for openSUSE:Factory checked in 
at 2021-08-25 20:56:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fuse (Old)
 and      /work/SRC/openSUSE:Factory/.fuse.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fuse"

Wed Aug 25 20:56:32 2021 rev:75 rq:913761 version:2.9.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/fuse/fuse.changes        2020-12-22 
11:25:28.300721935 +0100
+++ /work/SRC/openSUSE:Factory/.fuse.new.1899/fuse.changes      2021-08-25 
20:57:12.653239751 +0200
@@ -1,0 +2,5 @@
+Mon Aug 23 12:48:31 UTC 2021 - Jan Engelhardt <[email protected]>
+
+- Add closefrom.patch [boo#1189086]
+
+-------------------------------------------------------------------

New:
----
  closefrom.patch

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

Other differences:
------------------
++++++ fuse.spec ++++++
--- /var/tmp/diff_new_pack.MxipsE/_old  2021-08-25 20:57:13.233238990 +0200
+++ /var/tmp/diff_new_pack.MxipsE/_new  2021-08-25 20:57:13.233238990 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fuse
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,9 +29,10 @@
 Source4:        fuse.conf
 Source5:        
https://github.com/libfuse/libfuse/releases/download/fuse-%{version}/fuse-%{version}.tar.gz.asc
 Source6:        fuse.keyring
-Patch0:         fuse-install-fix.diff
-Patch3:         fusermount-compile-as-pie.patch
-Patch4:         aarch64-build-fix.patch
+Patch1:         fuse-install-fix.diff
+Patch2:         fusermount-compile-as-pie.patch
+Patch3:         aarch64-build-fix.patch
+Patch4:         closefrom.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libtool

++++++ closefrom.patch ++++++
From: Jan Engelhardt <[email protected]>
Date: 2021-08-23 14:47:30.341142824 +0200
References: https://bugzilla.opensuse.org/show_bug.cgi?id=1189086
References: https://bugzilla.redhat.com/show_bug.cgi?id=1984776

glibc-2.34 added closefrom. Rename fuse functions to work around the collision.
---
 util/ulockmgr_server.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: fuse-2.9.9/util/ulockmgr_server.c
===================================================================
--- fuse-2.9.9.orig/util/ulockmgr_server.c
+++ fuse-2.9.9/util/ulockmgr_server.c
@@ -124,7 +124,7 @@ static int receive_message(int sock, voi
        return res;
 }
 
-static int closefrom(int minfd)
+static int fuse_closefrom(int minfd)
 {
        DIR *dir = opendir("/proc/self/fd");
        if (dir) {
@@ -384,7 +384,7 @@ int main(int argc, char *argv[])
                dup2(nullfd, 1);
        }
        close(3);
-       closefrom(5);
+       fuse_closefrom(5);
        while (1) {
                char c;
                int sock;

Reply via email to