diff options
author | Brent Cook <busterb@gmail.com> | 2023-07-07 17:34:38 +0300 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-07-07 18:19:10 +0300 |
commit | 56b283e27f84a2f199333827fd809ed73d292a60 (patch) | |
tree | ae3fe2a5d55ac561d3340703d166a801159e7157 /patches | |
parent | f555467a6f0140c0e82241332f2d98125d0ffd88 (diff) | |
download | portable-56b283e27f84a2f199333827fd809ed73d292a60.tar.gz portable-56b283e27f84a2f199333827fd809ed73d292a60.tar.bz2 portable-56b283e27f84a2f199333827fd809ed73d292a60.zip |
remove Windows lld workaround
Diffstat (limited to 'patches')
-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 | |||