Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package svxlink for openSUSE:Factory checked in at 2021-03-11 20:11:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/svxlink (Old) and /work/SRC/openSUSE:Factory/.svxlink.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "svxlink" Thu Mar 11 20:11:20 2021 rev:4 rq:878282 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/svxlink/svxlink.changes 2019-09-04 09:15:23.362937754 +0200 +++ /work/SRC/openSUSE:Factory/.svxlink.new.2401/svxlink.changes 2021-03-11 20:12:58.564730182 +0100 @@ -1,0 +2,6 @@ +Wed Mar 10 19:56:51 UTC 2021 - Martin Hauke <mar...@gmx.de> + +- Update to version 19.09.2 + * Bugfix release + +------------------------------------------------------------------- Old: ---- svxlink-19.09.1.tar.gz New: ---- svxlink-19.09.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ svxlink.spec ++++++ --- /var/tmp/diff_new_pack.UO78D2/_old 2021-03-11 20:12:59.516731727 +0100 +++ /var/tmp/diff_new_pack.UO78D2/_new 2021-03-11 20:12:59.520731733 +0100 @@ -1,7 +1,7 @@ # # spec file for package svxlink # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,7 +27,7 @@ # Sounds version %define SOUNDS 19.09 Name: svxlink -Version: 19.09.1 +Version: 19.09.2 Release: 0 Summary: Multi purpose voice services system for ham radio License: GPL-2.0-only ++++++ svxlink-19.09.1.tar.gz -> svxlink-19.09.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/svxlink-19.09.1/src/doc/README-19.09.2.adoc new/svxlink-19.09.2/src/doc/README-19.09.2.adoc --- old/svxlink-19.09.1/src/doc/README-19.09.2.adoc 1970-01-01 01:00:00.000000000 +0100 +++ new/svxlink-19.09.2/src/doc/README-19.09.2.adoc 2021-03-10 00:15:07.000000000 +0100 @@ -0,0 +1,4 @@ +SvxLink release 19.09.2 -- 10 Mar 2021 +-------------------------------------- +This is a hotfix release fixing a bug in the SvxReflector authentication code. +If you are running a SvxReflector server you should upgrade immediately. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/svxlink-19.09.1/src/svxlink/ChangeLog new/svxlink-19.09.2/src/svxlink/ChangeLog --- old/svxlink-19.09.1/src/svxlink/ChangeLog 2019-09-01 22:12:38.000000000 +0200 +++ new/svxlink-19.09.2/src/svxlink/ChangeLog 2021-03-10 00:15:07.000000000 +0100 @@ -1,3 +1,10 @@ + 1.7.0-1 -- 10 Mar 2021 +------------------------ + +* Bugfix in SvxReflector authentication code. Upgrade immediately. + + + 1.7.0 -- 01 Sep 2019 ---------------------- * MetarInfo now supports secure http (https) since aviationweather.gov has diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/svxlink-19.09.1/src/svxlink/reflector/ReflectorClient.cpp new/svxlink-19.09.2/src/svxlink/reflector/ReflectorClient.cpp --- old/svxlink-19.09.1/src/svxlink/reflector/ReflectorClient.cpp 2019-09-01 22:12:38.000000000 +0200 +++ new/svxlink-19.09.2/src/svxlink/reflector/ReflectorClient.cpp 2021-03-10 00:15:07.000000000 +0100 @@ -369,7 +369,7 @@ } string auth_key = lookupUserKey(msg.callsign()); - if (msg.verify(auth_key, m_auth_challenge)) + if (!auth_key.empty() && msg.verify(auth_key, m_auth_challenge)) { vector<string> connected_nodes; m_reflector->nodeList(connected_nodes); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/svxlink-19.09.1/src/versions new/svxlink-19.09.2/src/versions --- old/svxlink-19.09.1/src/versions 2019-09-01 22:12:38.000000000 +0200 +++ new/svxlink-19.09.2/src/versions 2021-03-10 00:15:07.000000000 +0100 @@ -1,5 +1,5 @@ # Project release version -PROJECT=19.09 +PROJECT=19.09.2 # Version for the Qtel application QTEL=1.2.4 @@ -37,4 +37,4 @@ SVXSERVER=0.0.6 # Version for SvxReflector -SVXREFLECTOR=1.0.1 +SVXREFLECTOR=1.0.2