aboutsummaryrefslogtreecommitdiff
path: root/patches/tls_config.c.patch
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--patches/tls_config.c.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/patches/tls_config.c.patch b/patches/tls_config.c.patch
deleted file mode 100644
index cd9817c..0000000
--- a/patches/tls_config.c.patch
+++ /dev/null
@@ -1,25 +0,0 @@
1--- tls/tls_config.c.orig Fri Jul 26 22:16:53 2019
2+++ tls/tls_config.c Fri Jul 26 22:21:25 2019
3@@ -15,6 +15,10 @@
4 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
5 */
6
7+#ifdef _MSC_VER
8+#define NO_REDEF_POSIX_FUNCTIONS
9+#endif
10+
11 #include <sys/stat.h>
12
13 #include <ctype.h>
14@@ -48,7 +52,11 @@ tls_config_load_file(struct tls_error *error, const ch
15 *buf = NULL;
16 *len = 0;
17
18+#ifndef _WIN32
19 if ((fd = open(filename, O_RDONLY)) == -1) {
20+#else
21+ if ((fd = open(filename, O_RDONLY | O_BINARY)) == -1) {
22+#endif
23 tls_error_set(error, "failed to open %s file '%s'",
24 filetype, filename);
25 goto err;