diff options
-rw-r--r-- | patches/ssl_txt.c.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/patches/ssl_txt.c.patch b/patches/ssl_txt.c.patch deleted file mode 100644 index 7439b0d..0000000 --- a/patches/ssl_txt.c.patch +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | --- ssl/ssl_txt.c.orig Wed Jun 22 11:37:59 2022 | ||
2 | +++ ssl/ssl_txt.c Wed Jun 22 11:37:59 2022 | ||
3 | @@ -82,6 +82,7 @@ | ||
4 | * OTHERWISE. | ||
5 | */ | ||
6 | |||
7 | +#include <inttypes.h> | ||
8 | #include <stdio.h> | ||
9 | |||
10 | #include <openssl/buffer.h> | ||
11 | @@ -174,8 +174,8 @@ | ||
12 | } | ||
13 | |||
14 | if (x->time != 0) { | ||
15 | - if (BIO_printf(bp, "\n Start Time: %lld", | ||
16 | - (long long)x->time) <= 0) | ||
17 | + if (BIO_printf(bp, "\n Start Time: %"PRId64, | ||
18 | + (int64_t)x->time) <= 0) | ||
19 | goto err; | ||
20 | } | ||
21 | |||