This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit ff437164d4444ba0b7af64be312bcdb63ed057ef Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Oct 29 02:10:14 2020 +0100 src/x2goclient-openssh-bugs.c: stderr closing was supposedly implemented in 8.4p1, but... It turns out that the implementation is buggy and ironically doesn't close stderr, but instead double-closes stdout. Tentatively update the version requirement to 8.4p2 since this will probably be fully fixed and included in 8.4p2 rather soon. Otherwise, we'll need to update the version requirement to 8.5(p1) at a later time. --- src/x2goclient-openssh-bugs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x2goclient-openssh-bugs.c b/src/x2goclient-openssh-bugs.c index da59144..9328f0e 100644 --- a/src/x2goclient-openssh-bugs.c +++ b/src/x2goclient-openssh-bugs.c @@ -73,7 +73,7 @@ gboolean x2goclient_openssh_bugs_update (X2GoClientOpenSSHBugs * const self, con *self = (const X2GoClientOpenSSHBugs) { 0 }; if (8 >= version->major) { - if (4 >= version->minor) { + if ((4 > version->minor) || ((4 == version->minor) && (2 > version->patch))) { self->backgrounding_keeps_stderr = TRUE; } } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git