This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from afeda52 report missing state file to STDERR new 4201e2f don't use the STDERR bareword new 80f9c2f add curly braces around STDERR file handle 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: X2Go/Server/Agent/NX.pm | 2 +- x2goserver-printing/bin/x2goprint | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 4201e2fa9aec65d1ea6385c273ab1939e48b1ef5 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Jun 27 21:52:55 2014 +0200 don't use the STDERR bareword --- X2Go/Server/Agent/NX.pm | 2 +- x2goserver-printing/bin/x2goprint | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/X2Go/Server/Agent/NX.pm b/X2Go/Server/Agent/NX.pm index e4d7e35..fade9b7 100644 --- a/X2Go/Server/Agent/NX.pm +++ b/X2Go/Server/Agent/NX.pm @@ -79,7 +79,7 @@ sub get_agent_state my $stateFile = "/tmp/.x2go-".$user."/C-".$sess."/state"; if (! -e $stateFile ) { - print { STDERR } "WARNING: state file session $sess does not exists: $stateFile\n"; + print { \*STDERR } "WARNING: state file session $sess does not exists: $stateFile\n"; $state="UNKNOWN"; } else diff --git a/x2goserver-printing/bin/x2goprint b/x2goserver-printing/bin/x2goprint index 9aed3ca..26dd4c1 100755 --- a/x2goserver-printing/bin/x2goprint +++ b/x2goserver-printing/bin/x2goprint @@ -58,7 +58,7 @@ sub check_usage elsif (scalar(@ARGV) != 4) { syslog('err', "ERROR: x2goprint was called with a wrong number of cmd line args, x2goprint exits now!"); - print STDERR "ERROR: Usage:\nx2goprint user session file titleFile\nx2goprint user\n"; + print \*STDERR "ERROR: Usage:\nx2goprint user session file titleFile\nx2goprint user\n"; exit 1; } } -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 80f9c2f1bd6baffe4bb95f9b51219f692f6e8b31 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Jun 27 21:54:24 2014 +0200 add curly braces around STDERR file handle --- x2goserver-printing/bin/x2goprint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2goserver-printing/bin/x2goprint b/x2goserver-printing/bin/x2goprint index 26dd4c1..8c2dceb 100755 --- a/x2goserver-printing/bin/x2goprint +++ b/x2goserver-printing/bin/x2goprint @@ -58,7 +58,7 @@ sub check_usage elsif (scalar(@ARGV) != 4) { syslog('err', "ERROR: x2goprint was called with a wrong number of cmd line args, x2goprint exits now!"); - print \*STDERR "ERROR: Usage:\nx2goprint user session file titleFile\nx2goprint user\n"; + print { \*STDERR } "ERROR: Usage:\nx2goprint user session file titleFile\nx2goprint user\n"; exit 1; } } -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git