Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package jfsutils for openSUSE:Factory checked in at 2022-05-20 17:49:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jfsutils (Old) and /work/SRC/openSUSE:Factory/.jfsutils.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jfsutils" Fri May 20 17:49:46 2022 rev:26 rq:977828 version:1.1.15 Changes: -------- --- /work/SRC/openSUSE:Factory/jfsutils/jfsutils.changes 2021-10-20 20:22:44.641321027 +0200 +++ /work/SRC/openSUSE:Factory/.jfsutils.new.1538/jfsutils.changes 2022-05-20 17:49:49.575177602 +0200 @@ -1,0 +2,5 @@ +Tue May 17 16:37:58 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- add jfsutils_format-security_ftbs.patch + +------------------------------------------------------------------- New: ---- jfsutils_format-security_ftbs.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jfsutils.spec ++++++ --- /var/tmp/diff_new_pack.ZGkz1k/_old 2022-05-20 17:49:50.191178152 +0200 +++ /var/tmp/diff_new_pack.ZGkz1k/_new 2022-05-20 17:49:50.195178156 +0200 @@ -1,7 +1,7 @@ # # spec file for package jfsutils # -# 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 @@ -22,7 +22,7 @@ Summary: IBM JFS Utility Programs License: GPL-2.0-or-later Group: System/Filesystems -URL: http://jfs.sf.net +URL: http://jfs.sourceforge.net/ Source0: http://jfs.sourceforge.net/project/pub/%{name}-%{version}.tar.gz Source1: jfs.pdf Source2: jfslayout.pdf @@ -32,10 +32,10 @@ Patch1: jfs-headers.patch Patch2: sysmacros.patch Patch3: libfs-Fixing-issue-with-variable-name-collision.patch +Patch4: jfsutils_format-security_ftbs.patch BuildRequires: e2fsprogs-devel Provides: jfsprogs = %{version} Obsoletes: jfsprogs < %{version} -BuildRoot: %{_tmppath}/%{name}-%{version}-build Supplements: filesystem(jfs) %description @@ -55,6 +55,7 @@ %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build sed -i -e 's@^\./"@\." @' fsck/jfs_fsck.8 \ @@ -77,8 +78,8 @@ make DESTDIR=%{buildroot} install %{?_smp_mflags} %files -%defattr(-,root,root) -%doc AUTHORS COPYING NEWS ChangeLog jfsdocs/* +%license COPYING +%doc AUTHORS NEWS ChangeLog jfsdocs/* %{_mandir}/man8/* %{_sbindir}/* ++++++ jfsutils_format-security_ftbs.patch ++++++ diff -rU4 jfsutils-1.1.15/fscklog/display.c jfsutils-1.1.15-mine/fscklog/display.c --- jfsutils-1.1.15/fscklog/display.c 2005-11-22 21:43:54.000000000 +0100 +++ jfsutils-1.1.15-mine/fscklog/display.c 2013-12-04 21:42:37.451313506 +0100 @@ -181,9 +181,9 @@ -1; } else { /* the record looks ok */ msg_txt = &log_entry[log_entry_pos]; - printf(msg_txt); + printf("%s", msg_txt); /* * set up for the next record */ local_recptr->infile_buf_data_len += diff -rU4 jfsutils-1.1.15/fscklog/fscklog.c jfsutils-1.1.15-mine/fscklog/fscklog.c --- jfsutils-1.1.15/fscklog/fscklog.c 2006-06-05 21:31:40.000000000 +0200 +++ jfsutils-1.1.15-mine/fscklog/fscklog.c 2013-12-04 21:43:57.649593842 +0100 @@ -251,9 +251,9 @@ va_end(args); sprintf(debug_detail, " [%s:%d]\n", basename(file_name), line_number); - printf(msg_string); - printf(debug_detail); + printf("%s", msg_string); + printf("%s", debug_detail); return 0; } diff -rU4 jfsutils-1.1.15/logdump/helpers.c jfsutils-1.1.15-mine/logdump/helpers.c --- jfsutils-1.1.15/logdump/helpers.c 2005-11-22 21:43:55.000000000 +0100 +++ jfsutils-1.1.15-mine/logdump/helpers.c 2013-12-04 21:44:33.407704099 +0100 @@ -94,9 +94,9 @@ va_end(args); sprintf(debug_detail, " [%s:%d]\n", file_name, line_number); - printf(msg_string); - printf(debug_detail); + printf("%s", msg_string); + printf("%s", debug_detail); return 0; }