This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2godesktopsharing. from 16cfb73 Provide debug output when we DENY session startup. new fa9e1e0 debian/control: Raise versioned D (x2godesktopsharing): x2goserver (>= 4.0.1.19). new 4764a2a fix for last commit (as it broke X2Go Client) 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 ++ sharetray.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2godesktopsharing.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2godesktopsharing. commit fa9e1e09ff4b8eaf8d44ddcfba41dd5bcc810eb9 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 1 01:28:21 2014 +0100 debian/control: Raise versioned D (x2godesktopsharing): x2goserver (>= 4.0.1.19). --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 11ca59e..eec7c8f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,8 @@ x2godesktopsharing (3.1.1.2-0x2go1) UNRELEASED; urgency=low - Set Categories= field in x2godesktopsharing.desktop to Qt;KDE;Application;Network;RemoteAccess; - Provide debug output when we DENY session startup. + * debian/control: + + Raise versioned D (x2godesktopsharing): x2goserver (>= 4.0.1.19). * x2godesktopsharing.spec: + Adapt to building on openSUSE/SLES. + Add x2godesktopsharing-rpmlintrc. -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2godesktopsharing.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2godesktopsharing. commit 4764a2ab7263f6c794c9a3fb9a9e980e2478d226 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Nov 1 02:44:37 2014 +0100 fix for last commit (as it broke X2Go Client) --- sharetray.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sharetray.cpp b/sharetray.cpp index ba5f557..712af15 100644 --- a/sharetray.cpp +++ b/sharetray.cpp @@ -376,13 +376,13 @@ QString ShareTray::getSocketAnswer ( QString message ) if ( lst.size() !=11 ) { qDebug() <<"wrong parameters"; - return "DENY|wrong number of session parameters"; + return "DENY wrong number of session parameters"; } QStringList params=lst[9].split ( "XSHAD" ); if ( params.size() !=3 ) { qDebug() <<"wrong parameters"; - return "DENY|wrong session name"; + return "DENY wrong session name"; } QString client=lst[0]; QString user=params[1]; @@ -396,7 +396,7 @@ QString ShareTray::getSocketAnswer ( QString message ) proc.start ( "x2gostartagent",lst ); if ( !proc.waitForFinished ( 5000 ) ) { - return "DENY|x2gostartagent timed out"; + return "DENY x2gostartagent timed out"; } else { @@ -423,7 +423,7 @@ QString ShareTray::getSocketAnswer ( QString message ) } trayMessage ( tr ( "Access denied" ),QString ( tr ( "%1(%2): access denied" ) ).arg ( remote_user ).arg ( client ) ); - return "DENY|access denied"; + return "DENY access denied user"; } void ShareTray::closeSocket ( SimpleLocalSocket* sock ) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2godesktopsharing.git