[X2go-Commits] x2goserver.git - master (branch) updated: 3.1.1.3-91-g7901b02
X2Go dev team
git-admin at x2go.org
Tue Nov 20 15:07:50 CET 2012
The branch, master has been updated
via 7901b02cf5fb9e41283398844be19911c90671ec (commit)
from d70e0e79e5dbea3d9c6818daaa0f45d83eba1ad2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 7901b02cf5fb9e41283398844be19911c90671ec
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date: Tue Nov 20 15:05:45 2012 +0100
Fix failures of x2gogetagent that was related to faulty regexp in SQLite3 DB wrapper script.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 2 ++
.../lib/libx2go-server-db-sqlite3-wrapper.pl | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 4733ea6..f99c57e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,8 @@ x2goserver (3.2.0.0-0~x2go1) UNRELEASED; urgency=low
- Fix new SQLite3 wrapper for db_getmounts Perl call.
- Fix list output in new SQLite3 wrapper.
- Make session type label XFCE a valid session that starts xfce4-session.
+ - Fix failures of x2gogetagent that was related to faulty regexp in
+ SQLite3 DB wrapper script.
* /debian/control:
+ Package X2Go::Log in separate package: libx2go-log-perl.
+ Package X2Go::Server::DB in separate package: libx2go-server-db-perl.
diff --git a/libx2go-server-db-perl/lib/libx2go-server-db-sqlite3-wrapper.pl b/libx2go-server-db-perl/lib/libx2go-server-db-sqlite3-wrapper.pl
index 980acb9..751aa69 100755
--- a/libx2go-server-db-perl/lib/libx2go-server-db-sqlite3-wrapper.pl
+++ b/libx2go-server-db-perl/lib/libx2go-server-db-sqlite3-wrapper.pl
@@ -30,7 +30,7 @@ use X2Go::Server::DB::SQLite3;
sub print_result
{
my $retval = shift;
- if ( $retval =~ /^(0|1)/ )
+ if ( $retval =~ /^(0|1)$/ )
{
if ( $retval )
{
hooks/post-receive
--
x2goserver.git (X2Go Server)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).
More information about the x2go-commits
mailing list