This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 31a4d6c src/sessionwidget.cpp: stop parsing proxy address as "host:port" if the address contains a colon. Fixes: #1418. new 50cb6c6 src/onmainwindow.cpp: also remove proxy "host:port" parsing at connect time. Fixes: #1418. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 2 ++ src/onmainwindow.cpp | 6 ------ 2 files changed, 2 insertions(+), 6 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 50cb6c6fe1456c06b76ab4083f0c2784b38f5157 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Dec 1 09:54:55 2019 +0100 src/onmainwindow.cpp: also remove proxy "host:port" parsing at connect time. Fixes: #1418. --- debian/changelog | 2 ++ src/onmainwindow.cpp | 6 ------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2a51b0c..0ee9918 100644 --- a/debian/changelog +++ b/debian/changelog @@ -126,6 +126,8 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium "normal" host address and this behavior clashes with IPv6 addresses. We COULD, theoretically, keep it, but that would require writing an arbitrary address parser. Too much effort for little gain. + - src/onmainwindow.cpp: also remove proxy "host:port" parsing at connect + time. Fixes: #1418. * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 872f952..b226c62 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3786,12 +3786,6 @@ bool ONMainWindow::startSession ( const QString& sid, CONTYPE conType ) proxyKrbLogin = config.proxyKrbLogin; } - if (proxyserver.indexOf (":") != -1) { - QStringList parts = proxyserver.split (":"); - proxyserver = parts[0]; - proxyport = parts[1].toInt (); - } - bool proxySamePass=(st->setting()->value ( sid+"/sshproxysamepass", false -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git