summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2006-06-06 12:05:42 +0000
committerDaniel Black <dragonheart@gentoo.org>2006-06-06 12:05:42 +0000
commit7bf7c8033731d42b0ff96bd8631b0fd63a6e4db2 (patch)
tree008fd4c4024b6b593ef5af7f8e0426fae9a46ef1 /app-crypt/truecrypt/files
parentremove a snapshot (diff)
downloadhistorical-7bf7c8033731d42b0ff96bd8631b0fd63a6e4db2.tar.gz
historical-7bf7c8033731d42b0ff96bd8631b0fd63a6e4db2.tar.bz2
historical-7bf7c8033731d42b0ff96bd8631b0fd63a6e4db2.zip
%uL should be %Lu in patch
Package-Manager: portage-2.1_rc4-r2
Diffstat (limited to 'app-crypt/truecrypt/files')
-rw-r--r--app-crypt/truecrypt/files/digest-truecrypt-4.2-r13
-rw-r--r--app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch6
2 files changed, 6 insertions, 3 deletions
diff --git a/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1 b/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1
new file mode 100644
index 000000000000..9951f54d3da9
--- /dev/null
+++ b/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1
@@ -0,0 +1,3 @@
+MD5 8ea4464f3f89fe8c367dc19982a8f611 truecrypt-4.2-source-code.tar.gz 1076093
+RMD160 74ba185bad9952ea9b3b0e358e9fee6f2080e6b9 truecrypt-4.2-source-code.tar.gz 1076093
+SHA256 54f54cd68c99efe3fd2c0899174b38d4cfe1ad576112672aabd2ac64e336cd1f truecrypt-4.2-source-code.tar.gz 1076093
diff --git a/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch b/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch
index 669758c1f05f..4c5bc7c82c21 100644
--- a/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch
+++ b/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch
@@ -5,7 +5,7 @@
}
- if (sscanf (argv[ARG_SEC], SECTOR_FORMAT, &tc->start) != 1)
-+ if (sscanf (argv[ARG_SEC], "%uL", &tc->start) != 1)
++ if (sscanf (argv[ARG_SEC], "%Lu", &tc->start) != 1)
{
ti->error = "truecrypt: Invalid device sector";
goto err;
@@ -14,7 +14,7 @@
// Read-only start sector
- if (sscanf (argv[ARG_RO_START], SECTOR_FORMAT, &tc->read_only_start) != 1)
-+ if (sscanf (argv[ARG_RO_START], "%uL", &tc->read_only_start) != 1)
++ if (sscanf (argv[ARG_RO_START], "%Lu", &tc->read_only_start) != 1)
{
ti->error = "truecrypt: Invalid read-only start sector";
goto err;
@@ -22,7 +22,7 @@
// Read-only end sector
- if (sscanf (argv[ARG_RO_END], SECTOR_FORMAT, &tc->read_only_end) != 1)
-+ if (sscanf (argv[ARG_RO_END], "%uL", &tc->read_only_end) != 1)
++ if (sscanf (argv[ARG_RO_END], "%Lu", &tc->read_only_end) != 1)
{
ti->error = "truecrypt: Invalid read-only end sector";
goto err;