summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2006-03-20 21:17:13 +0000
committerStefan Schweizer <genstef@gentoo.org>2006-03-20 21:17:13 +0000
commit55cba78902cdc1b433d470b2d4bdeddd44e5c613 (patch)
treed41ba4de3e8438085bb5ab539ba9e6bdd74b5999 /sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch
parentMarking stable on amd64/x86 and cleaning up older ebuilds. (diff)
downloadhistorical-55cba78902cdc1b433d470b2d4bdeddd44e5c613.tar.gz
historical-55cba78902cdc1b433d470b2d4bdeddd44e5c613.tar.bz2
historical-55cba78902cdc1b433d470b2d4bdeddd44e5c613.zip
Fix DEPEND thanks to Antonio <Anton.Ananich@gmail.com> in bug 126855, also remove old ebuilds.
Package-Manager: portage-2.1_pre6-r4
Diffstat (limited to 'sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch')
-rw-r--r--sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch b/sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch
deleted file mode 100644
index 19cc713d543a..000000000000
--- a/sys-fs/captive/files/add-extra-opts-for-user-access-to-mount-t-captive.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-This patch was introduced by me, to allow the access of other users to root-mounted captive-ntfs volumes.
-
---- captive-1.1.5/src/client/lufs/mount.captive.in.orig 2004-12-05 21:59:19.561715008 +0100
-+++ captive-1.1.5/src/client/lufs/mount.captive.in 2004-12-05 22:00:49.549034856 +0100
-@@ -127,8 +127,10 @@
-
- warn "$0: '-n' not supported - ignored" if $nomtab;
-
-+my $fuseopts="-oallow_other,fsname=$image";
-+
- # Use "'$oo'" to permit another expansion by bash(1) during lufsmnt(8) execution.
--my @argv=($lufsd_bin,$oo,$dir,"-s");
-+my @argv=($lufsd_bin,$oo,$dir,"-s",$fuseopts);
-
- print STDERR "$0: @argv\n" if $verbose;
- exec $lufsd_bin @argv;