This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 16cf617 x2goclient.nsi: Add setup.exe file properties new 9dba4ec Windows: Print to debug about deleting PuTTY session registry key new db26121 Windows: Do not delete saved PuTTY sessions when Kerberos 5 (GSSAPI) authentication is enabled (Fixes: #625) The 2 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/sshprocess.cpp | 10 ++++++++++ 2 files changed, 12 insertions(+) -- Alioth's /srv/git/code.x2go.org/x2goclient.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 9dba4ece36b8a38d9acab460c9aad3779021aa0a Author: Mike DePaulo <mikedep333@gmail.com> Date: Sun May 10 10:44:19 2015 -0400 Windows: Print to debug about deleting PuTTY session registry key --- src/sshprocess.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sshprocess.cpp b/src/sshprocess.cpp index 3c43496..ffecb51 100644 --- a/src/sshprocess.cpp +++ b/src/sshprocess.cpp @@ -171,6 +171,9 @@ void SshProcess::addPuttyReg(QString host, QString uuidStr) void SshProcess::rmPuttyReg(QString uuidStr) { +#ifdef DEBUG + x2goDebug<<"deleting key in registry: HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions\\"+uuidStr<<endl; +#endif QSettings st("HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions", QSettings::NativeFormat); st.remove(uuidStr); -- Alioth's /srv/git/code.x2go.org/x2goclient.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 db261211d573cd99ed359bca6fc3219fadb70c97 Author: Mike DePaulo <mikedep333@gmail.com> Date: Sun May 10 11:02:42 2015 -0400 Windows: Do not delete saved PuTTY sessions when Kerberos 5 (GSSAPI) authentication is enabled (Fixes: #625) --- debian/changelog | 2 ++ src/sshprocess.cpp | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 6536b5c..f5238a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ x2goclient (4.0.4.0-0x2go1) UNRELEASED; urgency=low [ Mike DePaulo ] * New upstream release (4.0.4.0): + - Windows: Do not delete saved PuTTY sessions when Kerberos 5 + (GSSAPI) authentication is enabled (Fixes: #625) - Windows: Include debug build in the regular installer. It is an optional component during the install. It is not installed by default. diff --git a/src/sshprocess.cpp b/src/sshprocess.cpp index ffecb51..d3e1911 100644 --- a/src/sshprocess.cpp +++ b/src/sshprocess.cpp @@ -171,6 +171,13 @@ void SshProcess::addPuttyReg(QString host, QString uuidStr) void SshProcess::rmPuttyReg(QString uuidStr) { + if (uuidStr.isEmpty()) + { +#ifdef DEBUG + x2goDebug<<"uuidStr is empty. No PuTTY session reg key to delete."<<endl; +#endif + return; + } #ifdef DEBUG x2goDebug<<"deleting key in registry: HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions\\"+uuidStr<<endl; #endif -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git