This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch release/4.0.5.1-mswin in repository x2goclient. from da5ccc3 Add changelog entry for the DSA keys with Cygwin sshd fix (Fixes: #1002) new 1f26f0c Windows: increase sshd logging to debug1 level 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 | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) -- 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 release/4.0.5.1-mswin in repository x2goclient. commit 1f26f0c7aa95a32d6942180d6df88319e77ed012 Author: Mike DePaulo <mikedep333@gmail.com> Date: Mon May 30 09:07:46 2016 -0400 Windows: increase sshd logging to debug1 level --- debian/changelog | 2 +- src/onmainwindow.cpp | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 86866dc..1701cce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ x2goclient (4.0.5.1-2016.05.18) UNRELEASED; urgency=medium [ Mike DePaulo ] * New upstream release (4.0.5.2): - - Windows: add sshd logging when using the --debug flag. + - Windows: add sshd debug1 logging when using the --debug flag. - Windows: Revert back to Cygwin components that have not been "rebased" - Windows: Fix folder and printer sharing with our current version diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 97dd9f2..4df1316 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -10239,12 +10239,19 @@ void ONMainWindow::generateEtcFiles() "HostKeyAlgorithms=*\n"<< "Subsystem shell "<< wapiShortFileName ( appDir) +"/sh"+"\n"<< "Subsystem sftp "<< wapiShortFileName ( appDir) +"/sftp-server"+"\n"<< - "AuthorizedKeysFile \""<<authKeyPath<<"\""; + "AuthorizedKeysFile \""<<authKeyPath<<"\"\n"; #else "Subsystem sftp " /* This may need some sanitization, i.e., appDir could potentially include whitespace. */ <<appDir<<"/sftp-server\n"; #endif + + /* The log file in startSshd() is specific to Windows. */ +#ifdef Q_OS_WIN + if (debugging){ + out<<"LogLevel DEBUG1\n"; + } +#endif file.close(); x2goDebug<<etcDir +"/sshd_config created."; } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git