summaryrefslogtreecommitdiffstats
path: root/truecrypt
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2009-10-27 11:10:29 +0000
committer Eric Hameleers <alien@slackware.com>2009-10-27 11:10:29 +0000
commit090d223846bde1dcfe6559964d5539c7dc5943f8 (patch)
treed7190976c3ff60221dab4f0bea4a622d4d91accb /truecrypt
parent6d0e0ed2901a36739b6cdd23b6b713a5aece1bf4 (diff)
downloadasb-090d223846bde1dcfe6559964d5539c7dc5943f8.tar.gz
asb-090d223846bde1dcfe6559964d5539c7dc5943f8.tar.xz
This patch works...
Diffstat (limited to 'truecrypt')
-rw-r--r--truecrypt/build/truecrypt-6.3_umount.patch53
1 files changed, 26 insertions, 27 deletions
diff --git a/truecrypt/build/truecrypt-6.3_umount.patch b/truecrypt/build/truecrypt-6.3_umount.patch
index f68e7fb6..757ddc0e 100644
--- a/truecrypt/build/truecrypt-6.3_umount.patch
+++ b/truecrypt/build/truecrypt-6.3_umount.patch
@@ -1,27 +1,26 @@
-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;
- }
+--- truecrypt-6.3-source/Core/Unix/Linux/CoreLinux.cpp.orig 2009-10-21 15:11:02.000000000 +0200
++++ truecrypt-6.3-source/Core/Unix/Linux/CoreLinux.cpp 2009-10-27 11:02:51.000000000 +0100
+@@ -90,13 +90,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;
+ }