Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package links for openSUSE:Factory checked in at 2026-05-18 17:47:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/links (Old) and /work/SRC/openSUSE:Factory/.links.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "links" Mon May 18 17:47:35 2026 rev:51 rq:1353730 version:2.30 Changes: -------- --- /work/SRC/openSUSE:Factory/links/links.changes 2024-08-28 21:34:03.797188151 +0200 +++ /work/SRC/openSUSE:Factory/.links.new.1966/links.changes 2026-05-18 17:48:23.665238975 +0200 @@ -1,0 +2,6 @@ +Sun May 17 22:51:58 UTC 2026 - Berthold Gunreben <[email protected]> + +- fix build + * add fix-strchr-const-write.patch + +------------------------------------------------------------------- New: ---- fix-strchr-const-write.patch ----------(New B)---------- New:- fix build * add fix-strchr-const-write.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ links.spec ++++++ --- /var/tmp/diff_new_pack.fI0knh/_old 2026-05-18 17:48:24.345267074 +0200 +++ /var/tmp/diff_new_pack.fI0knh/_new 2026-05-18 17:48:24.349267240 +0200 @@ -1,7 +1,7 @@ # # spec file for package links # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2024 Andreas Stieger <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -25,6 +25,7 @@ Group: Productivity/Networking/Web/Browsers URL: http://links.twibright.com/ Source: http://links.twibright.com/download/links-%{version}.tar.bz2 +Patch1: fix-strchr-const-write.patch Patch2: configure.diff BuildRequires: autoconf BuildRequires: automake ++++++ fix-strchr-const-write.patch ++++++ --- ./ftp.c 2026/05/17 22:50:34 1.1 +++ ./ftp.c 2026/05/17 22:50:43 @@ -768,7 +768,7 @@ } while (0) A(ftp_head); ud = stracpy(get_url_data(c->url)); - if (strchr(cast_const_char ud, POST_CHAR)) *strchr(cast_const_char ud, POST_CHAR) = 0; + if (strchr(cast_const_char ud, POST_CHAR)) *(char *)strchr(cast_const_char ud, POST_CHAR) = 0; s0 = init_str(); s0l = 0; add_conv_str(&s0, &s0l, ud, (int)strlen(cast_const_char ud), -1);
