Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package netsniff-ng for openSUSE:Factory checked in at 2026-03-14 22:23:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/netsniff-ng (Old) and /work/SRC/openSUSE:Factory/.netsniff-ng.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "netsniff-ng" Sat Mar 14 22:23:03 2026 rev:12 rq:1338871 version:0.6.9 Changes: -------- --- /work/SRC/openSUSE:Factory/netsniff-ng/netsniff-ng.changes 2025-01-12 11:28:20.393439405 +0100 +++ /work/SRC/openSUSE:Factory/.netsniff-ng.new.8177/netsniff-ng.changes 2026-03-14 22:24:28.562302571 +0100 @@ -1,0 +2,6 @@ +Sat Mar 14 13:15:09 UTC 2026 - Martin Hauke <[email protected]> + +- Add patch: + * 0001-mausezahn-fixed-compilation-with-gcc-15.patch + +------------------------------------------------------------------- New: ---- 0001-mausezahn-fixed-compilation-with-gcc-15.patch ----------(New B)---------- New:- Add patch: * 0001-mausezahn-fixed-compilation-with-gcc-15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netsniff-ng.spec ++++++ --- /var/tmp/diff_new_pack.UUBJhQ/_old 2026-03-14 22:24:30.270373330 +0100 +++ /var/tmp/diff_new_pack.UUBJhQ/_new 2026-03-14 22:24:30.278373661 +0100 @@ -1,7 +1,7 @@ # # spec file for package netsniff-ng # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2012 Pascal Bleser <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -26,6 +26,7 @@ URL: http://netsniff-ng.org/ Source: http://pub.netsniff-ng.org/netsniff-ng/netsniff-ng-%{version}.tar.xz Patch0: netsniff-ng-ncursesw.patch +Patch1: 0001-mausezahn-fixed-compilation-with-gcc-15.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: bison ++++++ 0001-mausezahn-fixed-compilation-with-gcc-15.patch ++++++ >From 1af7ae33e3e8178ab5c649c3a52838d4375c4228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= <[email protected]> Date: Tue, 10 Jun 2025 14:47:54 +0200 Subject: [PATCH] mausezahn: fixed compilation with gcc-15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gcc-15 by default uses C23 standard which is more strict on forward declarations. Original report: https://bugzilla.redhat.com/show_bug.cgi?id=2340924 Signed-off-by: Jaroslav Škarvada <[email protected]> --- staging/mops.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/staging/mops.h b/staging/mops.h index cf19f09..ae3769a 100644 --- a/staging/mops.h +++ b/staging/mops.h @@ -940,9 +940,9 @@ int mops_direct(char* dev, int mops_type, char* argstring); struct automops * automops_init(void); -struct automops * automops_alloc_protocol(); -struct automops * automops_delete_protocol(); -struct automops * automops_search_protocol(); +struct automops * automops_alloc_protocol(struct automops *cur); +struct automops * automops_delete_protocol(struct automops *cur); +struct automops * automops_search_protocol(struct automops *list, char *name); int automops_dump_all (struct automops* list); void automops_set_defaults(struct automops * cur); struct fields * automops_add_field (struct automops *amp); -- 2.53.0
