diff options
Diffstat (limited to '3686.patch')
-rw-r--r-- | 3686.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/3686.patch b/3686.patch deleted file mode 100644 index 09226cc..0000000 --- a/3686.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 3ea5088acb27a4f2f0164b5621c54fb7b8767d47 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Mon, 21 Sep 2020 14:43:55 +0200 -Subject: [PATCH] fix build error: invalid conversion from 'const char*' to - 'char*' - ---- - src/protocol/ssl.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/protocol/ssl.cc b/src/protocol/ssl.cc -index c9069c1a8a..2f48e0ac72 100644 ---- a/src/protocol/ssl.cc -+++ b/src/protocol/ssl.cc -@@ -512,7 +512,7 @@ static int swSSL_check_name(const char *name, ASN1_STRING *pattern) { - char *s, *end; - size_t slen, plen; - -- s = name; -+ s = (char *)name; - slen = strlen(name); - - uchar *p = ASN1_STRING_data(pattern); |