summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Koltsov <maksbotan@gentoo.org>2011-09-13 18:43:15 +0000
committerMaxim Koltsov <maksbotan@gentoo.org>2011-09-13 18:43:15 +0000
commit4a7a54cae2a7491e78311e769461f2153fef601a (patch)
tree0576c5d1058754fd7e8a21760d8725a9778e1e87 /app-misc/hivex/files
parentDrop maintainer due retirement, bug #225633 (diff)
downloadgentoo-2-4a7a54cae2a7491e78311e769461f2153fef601a.tar.gz
gentoo-2-4a7a54cae2a7491e78311e769461f2153fef601a.tar.bz2
gentoo-2-4a7a54cae2a7491e78311e769461f2153fef601a.zip
Fix pathces issues reported by James Cloos <cloos@jhcloos.com>
(Portage version: 2.1.10.15/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/hivex/files')
-rw-r--r--app-misc/hivex/files/autoconf_fix-1.3.1.patch (renamed from app-misc/hivex/files/autoconf_fix-1.3.0.patch)0
-rw-r--r--app-misc/hivex/files/incorrect_format.patch22
2 files changed, 0 insertions, 22 deletions
diff --git a/app-misc/hivex/files/autoconf_fix-1.3.0.patch b/app-misc/hivex/files/autoconf_fix-1.3.1.patch
index 2a9495b51cea..2a9495b51cea 100644
--- a/app-misc/hivex/files/autoconf_fix-1.3.0.patch
+++ b/app-misc/hivex/files/autoconf_fix-1.3.1.patch
diff --git a/app-misc/hivex/files/incorrect_format.patch b/app-misc/hivex/files/incorrect_format.patch
deleted file mode 100644
index 7fa5ce56ac0a..000000000000
--- a/app-misc/hivex/files/incorrect_format.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Richard W.M. Jones <rjones@redhat.com>
-Date: Mon, 15 Aug 2011 09:52:00 +0000 (+0100)
-Subject: Fix incorrect printf format specifier in error string.
-X-Git-Url: http://git.annexia.org/?p=hivex.git;a=commitdiff_plain;h=5a4fd441d23f96ca618e55d4e54471d2e0fa94af
-
-Fix incorrect printf format specifier in error string.
----
-
-diff --git a/lib/hivex.c b/lib/hivex.c
-index dceea73..a3f5171 100644
---- a/lib/hivex.c
-+++ b/lib/hivex.c
-@@ -621,7 +621,8 @@ timestamp_check (hive_h *h, hive_node_h node, int64_t timestamp)
- if (timestamp < 0) {
- if (h->msglvl >= 2)
- fprintf (stderr, "hivex: timestamp_check: "
-- "negative time reported at %z: %" PRIi64 "\n", node, timestamp);
-+ "negative time reported at %zu: %" PRIi64 "\n",
-+ node, timestamp);
- errno = EINVAL;
- return -1;
- }