summaryrefslogtreecommitdiff
path: root/lib/curl_schannel.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-06-13 15:53:51 +0200
committerYang Tse <yangsita@gmail.com>2012-06-13 16:42:48 +0200
commit819afe46eeab2c7fa4738e4d77fa2a79a7bb8ebe (patch)
tree14bb997f237faf1249737cd0580fda083bdab5e9 /lib/curl_schannel.h
parentc13af843727c06ffec1031129ec5c30dfcd5066e (diff)
downloadcurl-819afe46eeab2c7fa4738e4d77fa2a79a7bb8ebe.tar.gz
schannel: remove version number and identify its use with 'schannel' literal
Version number is removed in order to make this info consistent with how we do it with other MS and Linux system libraries for which we don't provide this info. Identifier changed from 'WinSSPI' to 'schannel' given that this is the actual provider of the SSL/TLS support. libcurl can still be built with SSPI and without SCHANNEL support.
Diffstat (limited to 'lib/curl_schannel.h')
-rw-r--r--lib/curl_schannel.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/curl_schannel.h b/lib/curl_schannel.h
index fa19a02de..bac6e422b 100644
--- a/lib/curl_schannel.h
+++ b/lib/curl_schannel.h
@@ -1,5 +1,5 @@
-#ifndef HEADER_SCHANNEL_H
-#define HEADER_SCHANNEL_H
+#ifndef HEADER_CURL_SCHANNEL_H
+#define HEADER_CURL_SCHANNEL_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
@@ -8,6 +8,7 @@
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2012, Marc Hoersken, <info@marc-hoersken.de>, et al.
+ * Copyright (C) 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -23,7 +24,6 @@
***************************************************************************/
#include "setup.h"
-#ifdef USE_WINDOWS_SSPI
#ifdef USE_SCHANNEL
#include "urldata.h"
@@ -129,5 +129,4 @@ size_t Curl_schannel_version(char *buffer, size_t size);
#define curlssl_data_pending Curl_schannel_data_pending
#endif /* USE_SCHANNEL */
-#endif /* USE_WINDOWS_SSPI */
-#endif /* HEADER_SCHANNEL_H */
+#endif /* HEADER_CURL_SCHANNEL_H */