From 9bd7894915812dd39d26788b1c4665707ff1c68b Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Wed, 22 Jun 2022 11:43:09 +0200 Subject: Update ssl_txt.c patch --- patches/ssl_txt.c.patch | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/patches/ssl_txt.c.patch b/patches/ssl_txt.c.patch index 6f3535f..7439b0d 100644 --- a/patches/ssl_txt.c.patch +++ b/patches/ssl_txt.c.patch @@ -1,5 +1,5 @@ ---- ssl/ssl_txt.orig Sun Jul 17 17:26:59 2016 -+++ ssl/ssl_txt.c Sun Jul 17 17:35:44 2016 +--- ssl/ssl_txt.c.orig Wed Jun 22 11:37:59 2022 ++++ ssl/ssl_txt.c Wed Jun 22 11:37:59 2022 @@ -82,6 +82,7 @@ * OTHERWISE. */ @@ -8,12 +8,14 @@ #include #include -@@ -163,7 +164,7 @@ +@@ -174,8 +174,8 @@ } if (x->time != 0) { -- if (BIO_printf(bp, "\n Start Time: %lld", (long long)x->time) <= 0) -+ if (BIO_printf(bp, "\n Start Time: %"PRId64, (int64_t)x->time) <= 0) +- if (BIO_printf(bp, "\n Start Time: %lld", +- (long long)x->time) <= 0) ++ if (BIO_printf(bp, "\n Start Time: %"PRId64, ++ (int64_t)x->time) <= 0) goto err; } - if (x->timeout != 0L) { + -- cgit v1.2.3-55-g6feb