summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Strickroth <email@cs-ware.de>2020-09-10 10:32:02 +0200
committerSven Strickroth <email@cs-ware.de>2020-09-10 10:32:02 +0200
commit621e501c8b5bdbddce3c4673d1933bca92b268b7 (patch)
tree5be6170bdd63638ac864ee930ef4578200e5e50e
parent1e987525b3bd86fc29e7ff67d973861efd22faf7 (diff)
downloadlibgit2-621e501c8b5bdbddce3c4673d1933bca92b268b7.tar.gz
Fix typo: Make ifndef macroname the same as the define name
Signed-off-by: Sven Strickroth <email@cs-ware.de>
-rw-r--r--src/transports/winhttp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transports/winhttp.c b/src/transports/winhttp.c
index ee8cb1543..22b20b8a9 100644
--- a/src/transports/winhttp.c
+++ b/src/transports/winhttp.c
@@ -41,11 +41,11 @@
#define WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH 0
#endif
-#ifndef WINHTTP_FLAG_SECURE_PROTOCOL_TLS_1_1
+#ifndef WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1
# define WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1 0x00000200
#endif
-#ifndef WINHTTP_FLAG_SECURE_PROTOCOL_TLS_1_2
+#ifndef WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2
# define WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2 0x00000800
#endif