Skip to content

Commit

Permalink
app-crypt/p11-kit: fix date handling
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/show_bug.cgi?id=688460
Thanks: Alexey
Signed-off-by: Alon Bar-Lev <[email protected]>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --force
  • Loading branch information
alonbl committed Jul 2, 2019
1 parent cdbe01c commit a252cac
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
26 changes: 26 additions & 0 deletions app-crypt/p11-kit/files/p11-kit-0.23.12-mktime.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
From 3d009fda4cb39157d6876e7d16cbc57f7b59bc86 Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <[email protected]>
Date: Mon, 1 Jul 2019 13:38:25 +0300
Subject: [PATCH] trust: do not allow daylight to invalidate date validation

Issue: 235
Signed-off-by: Alon Bar-Lev <[email protected]>
---
trust/builder.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/trust/builder.c b/trust/builder.c
index d819dc8..2fc0c40 100644
--- a/trust/builder.c
+++ b/trust/builder.c
@@ -261,6 +261,7 @@ type_date (p11_builder *builder,
return false;

memcpy (&two, &tm, sizeof (tm));
+ two.tm_isdst = -1; // do not perform tz fixup
if (mktime (&two) < 0)
return false;

--
2.21.0

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4:=[${MULTILIB_USEDEP}] )
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"

PATCHES=(
"${FILESDIR}/${P}-mktime.patch"
)

pkg_setup() {
# disable unsafe tests, bug#502088
export FAKED_MODE=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4:=[${MULTILIB_USEDEP}] )
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"

PATCHES=(
"${FILESDIR}/${PN}-0.23.12-mktime.patch"
)

pkg_setup() {
# disable unsafe tests, bug#502088
export FAKED_MODE=1
Expand Down

0 comments on commit a252cac

Please sign in to comment.