This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch release/4.0.1.x in repository x2goclient. from 746f20c x2goclient.spec: mark libssh-devel as versioned dependency, but keep it commented out for now (otherwise it will break our EPEL-6 builds) new 0cc3dd7 Revert "Fix password connection with libssh 0.6.0" new c9e895b Fix password connection with libssh 0.6.0. (Fixes: #420). 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/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 release/4.0.1.x in repository x2goclient. commit c9e895b59c038c9c2a8c68ab66c53f2abb868092 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Mar 29 21:11:45 2014 +0100 Fix password connection with libssh 0.6.0. (Fixes: #420). --- debian/changelog | 2 +- sshmasterconnection.cpp | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 36e61a3..e757677 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,7 @@ x2goclient (4.0.1.4-0x2go1) UNRELEASED; urgency=low [ Orion Poplawski ] * New upstream version (4.0.1.4): - - Fix password connection with libssh 0.6.0 + - Fix password connection with libssh 0.6.0. (Fixes: 420). - Don't use ancient Debianism's for ssh options (ProtocolKeepAlives). (Fixes: #434). diff --git a/sshmasterconnection.cpp b/sshmasterconnection.cpp index 34eea42..de73f0d 100755 --- a/sshmasterconnection.cpp +++ b/sshmasterconnection.cpp @@ -924,6 +924,9 @@ bool SshMasterConnection::userChallengeAuth() bool SshMasterConnection::userAuthWithPass() { + // Populate the userauth_list + ssh_userauth_none(my_ssh_session, NULL); + int method = ssh_userauth_list(my_ssh_session, NULL); if (method& SSH_AUTH_METHOD_INTERACTIVE) -- Alioth's /srv/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 release/4.0.1.x in repository x2goclient. commit 0cc3dd710a74a60329c7c0783fed545869b34746 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Mar 29 21:07:39 2014 +0100 Revert "Fix password connection with libssh 0.6.0" This reverts commit 083ece20445bf6e1db26a74856185d0c9b1e8b5a. --- debian/changelog | 2 +- sshmasterconnection.cpp | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index bf00b51..36e61a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,7 +5,7 @@ x2goclient (4.0.1.4-0x2go1) UNRELEASED; urgency=low - Increase ssh_select timeout to 0.5 sec. - Set mod map from client to server on Mac, hide keyboard settings on Mac. - Fix mod map on Mac with kerberos. - - Fix focus on pass form. + - Fix focus on pass form. [ Orion Poplawski ] * New upstream version (4.0.1.4): diff --git a/sshmasterconnection.cpp b/sshmasterconnection.cpp index de73f0d..34eea42 100755 --- a/sshmasterconnection.cpp +++ b/sshmasterconnection.cpp @@ -924,9 +924,6 @@ bool SshMasterConnection::userChallengeAuth() bool SshMasterConnection::userAuthWithPass() { - // Populate the userauth_list - ssh_userauth_none(my_ssh_session, NULL); - int method = ssh_userauth_list(my_ssh_session, NULL); if (method& SSH_AUTH_METHOD_INTERACTIVE) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git