From mg@reji.ru Fri Aug 7 11:19:23 2015 Received: (at submit) by bugs.x2go.org; 7 Aug 2015 09:19:26 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,SPF_HELO_PASS autolearn=ham version=3.3.2 X-Greylist: delayed 368 seconds by postgrey-1.34 at ymir.das-netzwerkteam.de; Fri, 07 Aug 2015 11:19:23 CEST Received: from trixie.reji.ru (trixie.reji.ru [84.22.98.211]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id 9C8955DA86 for ; Fri, 7 Aug 2015 11:19:23 +0200 (CEST) Received: from reji.ru (localhost [IPv6:::1]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by trixie.reji.ru (Postfix) with ESMTPSA id 82354800F4 for ; Fri, 7 Aug 2015 11:13:14 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 07 Aug 2015 14:13:14 +0500 From: Mikhail Gonchar To: submit@bugs.x2go.org Subject: sshd not start on Windows XP Message-ID: X-Sender: mg@reji.ru User-Agent: Roundcube Webmail/1.1.1 Package: x2goclient Version: 4.0.5.0 sshd not start on Windows XP because of an error in its config file (sshd_config): StrictModes no UsePrivilegeSeparation no PidFile C:/Documents and Settings/redge/.x2go/var/sshd.pid Subsystem shell C:/PROGRA~1/X2GOCL~1/sh Subsystem sftp C:/PROGRA~1/X2GOCL~1/sftp-server AuthorizedKeysFile "/cygdrive/C/Documents and Settings/%u/.x2go/.ssh/authorized_keys" The third line (PidFile ...) contains unquoted path with spaces. As workaround one can add quotes and change config file permissions (so it won't be rewritten by x2goclient). But this can be easily fixed in src/onmainwindow.cpp on the line 9997: out<<"StrictModes no\n"<< "UsePrivilegeSeparation no\n"<< "PidFile " + varDir + "/sshd.pid\n" <<