This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from b4462cb Fix TeKi storing Telekinesis ports in PgSQL-based session DB. Allow negative port numbers for the case that Telekinesis is not installed. new 581542f Fix db_insertmount (SQLite). Pathnames must not be enclosed by parentheses. The 1 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/DB.pm | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) -- 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 581542f30f269fbe6bf807f498cc7ef3275dac44 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Oct 7 21:38:35 2014 +0200 Fix db_insertmount (SQLite). Pathnames must not be enclosed by parentheses. --- X2Go/Server/DB.pm | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/X2Go/Server/DB.pm b/X2Go/Server/DB.pm index 9fd8126..4839dcd 100644 --- a/X2Go/Server/DB.pm +++ b/X2Go/Server/DB.pm @@ -182,7 +182,7 @@ sub db_insertmount } if ($backend eq 'sqlite') { - if( system_capture_merged_output("$x2go_lib_path/libx2go-server-db-sqlite3-wrapper", "insertmount", "$sid", "\"$path\"", "$client") eq "ok") + if( system_capture_merged_output("$x2go_lib_path/libx2go-server-db-sqlite3-wrapper", "insertmount", "$sid", "$path", "$client") eq "ok") { $res_ok=1; } diff --git a/debian/changelog b/debian/changelog index 527a074..bf5209f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -56,6 +56,7 @@ x2goserver (4.1.0.0-0x2go1.1) UNRELEASED; urgency=low - Fix accessing ARGV in X2Go::Utils:check_x2go_sessionid sub. (Fixes: #575). - Fix TeKi storing Telekinesis ports in PgSQL-based session DB. Allow negative port numbers for the case that Telekinesis is not installed. + - Fix db_insertmount (SQLite). Pathnames must not be enclosed by parentheses. * debian/control: + Package X2Go::Log in separate package: libx2go-log-perl. + Package X2Go::Server::DB in separate package: libx2go-server-db-perl. -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git