tomboy r2007 - in trunk: . Tomboy/Synchronization
- From: sharm svn gnome org
- To: svn-commits-list gnome org
- Subject: tomboy r2007 - in trunk: . Tomboy/Synchronization
- Date: Wed, 14 May 2008 18:49:37 +0100 (BST)
Author: sharm
Date: Wed May 14 17:49:37 2008
New Revision: 2007
URL: http://svn.gnome.org/viewvc/tomboy?rev=2007&view=rev
Log:
* Tomboy/Synchronization/FuseSyncServiceAddin.cs: Support newer `mount`
output like " type fuse.sshfs" found in Ubuntu Hardy. Should fix
bug #522424. Thanks to Olivier Crete and Peter Thomas for catching
this.
Modified:
trunk/ChangeLog
trunk/Tomboy/Synchronization/FuseSyncServiceAddin.cs
Modified: trunk/Tomboy/Synchronization/FuseSyncServiceAddin.cs
==============================================================================
--- trunk/Tomboy/Synchronization/FuseSyncServiceAddin.cs (original)
+++ trunk/Tomboy/Synchronization/FuseSyncServiceAddin.cs Wed May 14 17:49:37 2008
@@ -356,7 +356,7 @@
// TODO: Review this methodology...is it really the exe name, for example?
foreach (string outputLine in outputLines)
- if (outputLine.StartsWith (FuseMountExeName) &&
+ if ((outputLine.StartsWith (FuseMountExeName) || outputLine.Contains (" type fuse." + FuseMountExeName)) &&
outputLine.IndexOf (string.Format ("on {0} ", mountPath)) > -1)
return true;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]