Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libnfs for openSUSE:Factory checked 
in at 2026-04-07 16:32:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libnfs (Old)
 and      /work/SRC/openSUSE:Factory/.libnfs.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libnfs"

Tue Apr  7 16:32:20 2026 rev:12 rq:1344688 version:5.0.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/libnfs/libnfs.changes    2026-02-11 
18:54:00.194388066 +0100
+++ /work/SRC/openSUSE:Factory/.libnfs.new.21863/libnfs.changes 2026-04-07 
16:47:16.652504150 +0200
@@ -1,0 +2,5 @@
+Thu Mar 19 09:29:27 UTC 2026 - Richard Biener <[email protected]>
+
+- Add libnfs-5.0.3-glibc-2_43-2.patch to fix build with glibc 2.43.
+
+-------------------------------------------------------------------

New:
----
  libnfs-5.0.3-glibc-2_43-2.patch

----------(New B)----------
  New:
- Add libnfs-5.0.3-glibc-2_43-2.patch to fix build with glibc 2.43.
----------(New E)----------

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

Other differences:
------------------
++++++ libnfs.spec ++++++
--- /var/tmp/diff_new_pack.RZMijK/_old  2026-04-07 16:47:17.464537706 +0200
+++ /var/tmp/diff_new_pack.RZMijK/_new  2026-04-07 16:47:17.464537706 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libnfs
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
 # Copyright (c) 2015 Bjørn Lie, Bryne, Norway.
 # Copyright (c) 2026 Andreas Stieger <[email protected]>
 #
@@ -28,6 +28,7 @@
 URL:            https://github.com/sahlberg/libnfs
 Source0:        %{url}/archive/libnfs-%{version}.tar.gz
 Patch0:         libnfs-5.0.3-glibc-2_43.patch
+Patch1:         libnfs-5.0.3-glibc-2_43-2.patch
 BuildRequires:  autoconf
 BuildRequires:  libtool
 BuildRequires:  pkgconfig

++++++ libnfs-5.0.3-glibc-2_43-2.patch ++++++
--- libnfs-libnfs-5.0.3/lib/nfs_v3.c.orig       2026-03-19 10:27:08.202807530 
+0100
+++ libnfs-libnfs-5.0.3/lib/nfs_v3.c    2026-03-19 10:28:11.410808483 +0100
@@ -3586,7 +3586,7 @@
                   int mode, nfs_cb cb, void *private_data)
 {
        struct create_cb_data *cb_data;
-       char *ptr;
+       const char *ptr;
 
        cb_data = malloc(sizeof(struct create_cb_data));
        if (cb_data == NULL) {
@@ -3603,8 +3603,8 @@
                                       "buffer for creat path");
                         return -1;
                 }
-                ptr = strrchr(cb_data->path, '/');
-                *ptr = 0;
+                char *ptr2 = strrchr(cb_data->path, '/');
+                *ptr2 = 0;
         } else {
                 cb_data->path = malloc(strlen(path) + 2);
                 if (cb_data->path == NULL) {

Reply via email to