]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
don't typedef socklen_t for _MSC_VER >= 1914
authorMark Andrews <marka@isc.org>
Thu, 20 Sep 2018 03:51:50 +0000 (13:51 +1000)
committerMark Andrews <marka@isc.org>
Thu, 20 Sep 2018 03:51:50 +0000 (13:51 +1000)
lib/isc/win32/include/isc/platform.h.in

index b927888f1cda35109a84673f9dbc02ee89470193..6369fc5630478bf5825ccf48478685f6b9ec085b 100644 (file)
@@ -36,7 +36,9 @@
 #endif
 
 #include <stdint.h>
+#if _MSC_VER < 1914
 typedef uint32_t socklen_t;
+#endif
 
 #endif