File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1+ SvxLink release 19.09.2 -- 10 Mar 2021
2+ --------------------------------------
3+ This is a hotfix release fixing a bug in the SvxReflector authentication code.
4+ If you are running a SvxReflector server you should upgrade immediately.
Original file line number Diff line number Diff line change 1+ 1.7.0-1 -- 10 Mar 2021
2+ ------------------------
3+
4+ * Bugfix in SvxReflector authentication code. Upgrade immediately.
5+
6+
7+
18 1.7.0 -- 01 Sep 2019
29----------------------
310* MetarInfo now supports secure http (https) since aviationweather.gov has
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ void ReflectorClient::handleMsgAuthResponse(std::istream& is)
369369 }
370370
371371 string auth_key = lookupUserKey (msg.callsign ());
372- if (msg.verify (auth_key, m_auth_challenge))
372+ if (!auth_key. empty () && msg.verify (auth_key, m_auth_challenge))
373373 {
374374 vector<string> connected_nodes;
375375 m_reflector->nodeList (connected_nodes);
Original file line number Diff line number Diff line change 11# Project release version
2- PROJECT=19.09
2+ PROJECT=19.09.2
33
44# Version for the Qtel application
55QTEL=1.2.4
@@ -37,4 +37,4 @@ DEVCAL=1.0.2
3737SVXSERVER=0.0.6
3838
3939# Version for SvxReflector
40- SVXREFLECTOR=1.0.1
40+ SVXREFLECTOR=1.0.2
You can’t perform that action at this time.
0 commit comments