Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgtpnl for openSUSE:Factory checked in at 2022-08-04 13:23:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgtpnl (Old) and /work/SRC/openSUSE:Factory/.libgtpnl.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgtpnl" Thu Aug 4 13:23:27 2022 rev:7 rq:992627 version:1.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libgtpnl/libgtpnl.changes 2021-03-15 10:56:04.617326122 +0100 +++ /work/SRC/openSUSE:Factory/.libgtpnl.new.1521/libgtpnl.changes 2022-08-04 13:23:47.336554064 +0200 @@ -1,0 +2,6 @@ +Wed Aug 3 18:28:19 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 1.2.3 + * fix some cases of rc == 0 on error + +------------------------------------------------------------------- Old: ---- 1.2.2.tar.gz New: ---- 1.2.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgtpnl.spec ++++++ --- /var/tmp/diff_new_pack.x7lTi7/_old 2022-08-04 13:23:47.864555561 +0200 +++ /var/tmp/diff_new_pack.x7lTi7/_new 2022-08-04 13:23:47.872555584 +0200 @@ -1,7 +1,7 @@ # # spec file for package libgtpnl # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: libgtpnl -Version: 1.2.2 +Version: 1.2.3 Release: 0 Summary: GPRS tunnel configuration library License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ 1.2.2.tar.gz -> 1.2.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.2/debian/changelog new/libgtpnl-1.2.3/debian/changelog --- old/libgtpnl-1.2.2/debian/changelog 2021-02-23 12:52:08.000000000 +0100 +++ new/libgtpnl-1.2.3/debian/changelog 2022-06-28 16:13:45.000000000 +0200 @@ -1,3 +1,10 @@ +libgtpnl (1.2.3) unstable; urgency=medium + + [ Neels Hofmeyr ] + * fix some cases of rc == 0 on error + + -- Pau Espin Pedrol <pes...@sysmocom.de> Tue, 28 Jun 2022 16:13:45 +0200 + libgtpnl (1.2.2) unstable; urgency=medium [ Oliver Smith ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.2/src/Makefile.am new/libgtpnl-1.2.3/src/Makefile.am --- old/libgtpnl-1.2.2/src/Makefile.am 2021-02-23 12:52:08.000000000 +0100 +++ new/libgtpnl-1.2.3/src/Makefile.am 2022-06-28 16:13:45.000000000 +0200 @@ -2,7 +2,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification -LIBVERSION=1:1:1 +LIBVERSION=1:2:1 lib_LTLIBRARIES = libgtpnl.la diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libgtpnl-1.2.2/src/gtp-genl.c new/libgtpnl-1.2.3/src/gtp-genl.c --- old/libgtpnl-1.2.2/src/gtp-genl.c 2021-02-23 12:52:08.000000000 +0100 +++ new/libgtpnl-1.2.3/src/gtp-genl.c 2022-06-28 16:13:45.000000000 +0200 @@ -77,8 +77,10 @@ GTP_CMD_NEWPDP); gtp_build_payload(nlh, t); - if (genl_socket_talk(nl, nlh, seq, NULL, NULL) < 0) + if (genl_socket_talk(nl, nlh, seq, NULL, NULL) < 0) { perror("genl_socket_talk"); + return -1; + } return 0; } @@ -94,8 +96,10 @@ GTP_CMD_DELPDP); gtp_build_payload(nlh, t); - if (genl_socket_talk(nl, nlh, seq, NULL, NULL) < 0) + if (genl_socket_talk(nl, nlh, seq, NULL, NULL) < 0) { perror("genl_socket_talk"); + return -1; + } return 0; } @@ -200,7 +204,7 @@ if (genl_socket_talk(nl, nlh, seq, genl_gtp_attr_cb, NULL) < 0) { perror("genl_socket_talk"); - return 0; + return -1; } return 0;