Package: pmount
Version: 0.8-2

In fs.c, the 'iso9660' filesystem isn't marked as supporting the 'iocharset' mount option (whereas it really does -- and it's useful for Joliet-extended volumes). The attached patch remedies that.

--- fs.c.old    2005-06-10 13:11:52.579255696 +0300
+++ fs.c        2005-01-31 18:24:12.000000000 +0200
@@ -20,7 +20,7 @@
  */
 static struct FS supported_fs[] = {
     { "udf", "rw,nosuid,nodev,user", 1, "007", 1 },
-    { "iso9660", "rw,nosuid,nodev,user", 1, NULL, 1 },
+    { "iso9660", "rw,nosuid,nodev,user", 1, NULL, 0 },
     { "vfat", "rw,nosuid,nodev,user,quiet", 1, "077", 1 },
     { "ntfs", "ro,nosuid,nodev,user", 1, "077", 1 },
     { "hfsplus", "rw,nosuid,nodev,user", 1, NULL, 0 },

Reply via email to