[Pkg-xfce-commits] r2109 - in goodies/thunar-volman/debian: . patches

corsac at alioth.debian.org corsac at alioth.debian.org
Mon Jun 9 09:36:46 UTC 2008


Author: corsac
Date: 2008-06-09 09:36:45 +0000 (Mon, 09 Jun 2008)
New Revision: 2109

Added:
   goodies/thunar-volman/debian/patches/02_encrypted-volumes.patch
Modified:
   goodies/thunar-volman/debian/changelog
Log:
* debian/patches:
  - 02_encrypted-volumes added, add support for mounting encrypted volumes.
    Patch from Colin Leroy (Xfce #3349).

Modified: goodies/thunar-volman/debian/changelog
===================================================================
--- goodies/thunar-volman/debian/changelog	2008-06-09 09:24:16 UTC (rev 2108)
+++ goodies/thunar-volman/debian/changelog	2008-06-09 09:36:45 UTC (rev 2109)
@@ -1,3 +1,11 @@
+thunar-volman (0.2.0-3) unstable; urgency=low
+
+  * debian/patches:
+    - 02_encrypted-volumes added, add support for mounting encrypted volumes.
+      Patch from Colin Leroy (Xfce #3349).
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Mon, 09 Jun 2008 11:26:37 +0200
+
 thunar-volman (0.2.0-2) unstable; urgency=low
 
   [ Yves-Alexis Perez ]

Added: goodies/thunar-volman/debian/patches/02_encrypted-volumes.patch
===================================================================
--- goodies/thunar-volman/debian/patches/02_encrypted-volumes.patch	                        (rev 0)
+++ goodies/thunar-volman/debian/patches/02_encrypted-volumes.patch	2008-06-09 09:36:45 UTC (rev 2109)
@@ -0,0 +1,14 @@
+Index: thunar-volman/tvm-block-device.c
+===================================================================
+--- thunar-volman/tvm-block-device.c	(revision 4898)
++++ thunar-volman/tvm-block-device.c	(working copy)
+@@ -752,6 +752,9 @@
+   /* make sure the volume has a mountable filesystem */
+   fsusage = libhal_device_get_property_string (context, udi, "volume.fsusage", NULL);
+   has_filesystem = (G_LIKELY (fsusage && strcmp (fsusage, "filesystem") == 0));
++  if (!has_filesystem) {
++    has_filesystem = (G_LIKELY (fsusage && strcmp (fsusage, "crypto") == 0));
++  }
+   libhal_free_string (fsusage);
+   if (G_UNLIKELY (!has_filesystem))
+     return FALSE;




More information about the Pkg-xfce-commits mailing list