summaryrefslogtreecommitdiffstats
path: root/truecrypt
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2009-09-06 16:37:52 +0000
committer Eric Hameleers <alien@slackware.com>2009-09-06 16:37:52 +0000
commit0f493ea3536fb1343d5790a7e620bec7ba184fce (patch)
tree81fde494d621f467ae7821ab069ce57e7d2955e2 /truecrypt
parent37b509a01d03b07cd0013680b30991d0f6dbf878 (diff)
downloadasb-0f493ea3536fb1343d5790a7e620bec7ba184fce.tar.gz
asb-0f493ea3536fb1343d5790a7e620bec7ba184fce.tar.xz
Initial revision
Diffstat (limited to 'truecrypt')
-rw-r--r--truecrypt/build/truecrypt-6.2a_umount.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/truecrypt/build/truecrypt-6.2a_umount.patch b/truecrypt/build/truecrypt-6.2a_umount.patch
new file mode 100644
index 00000000..f68e7fb6
--- /dev/null
+++ b/truecrypt/build/truecrypt-6.2a_umount.patch
@@ -0,0 +1,27 @@
+diff -uarN truecrypt-6.0a-source.orig/Core/Unix/Linux/CoreLinux.cpp truecrypt-6.0a-source/Core/Unix/Linux/CoreLinux.cpp
+--- truecrypt-6.0a-source.orig/Core/Unix/Linux/CoreLinux.cpp 2008-07-04 21:23:54.000000000 +0200
++++ truecrypt-6.0a-source/Core/Unix/Linux/CoreLinux.cpp 2008-07-10 02:01:20.000000000 +0200
+@@ -69,13 +69,23 @@
+ void CoreLinux::DetachLoopDevice (const DevicePath &devicePath) const
+ {
+ list <string> args;
++ list <string> args2;
+ args.push_back ("-d");
+ args.push_back (devicePath);
++ /* args2 needed to umount loop device before detaching it
++ by Enrico Lo Tauro (neongen)*/
++ args2.push_back (devicePath);
+
+ for (int t = 0; true; t++)
+ {
+ try
+ {
++ try
++ {Process::Execute ("umount", args2);
++ }
++ catch (ExecutedProcessFailed&)
++ {
++ }
+ Process::Execute ("losetup", args);
+ break;
+ }