aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_sasl.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2015-09-12 14:50:02 +0100
committerSteve Holme <steve_holme@hotmail.com>2016-03-25 15:11:09 +0000
commit6012fa5aee04e05960804041bbcb444698cb7a33 (patch)
treed3cc56c5005acbfcf509b00a805865432e2ed6fd /lib/curl_sasl.c
parente1dca8a11706360ef0f9403492ea4c9b67692615 (diff)
vauth: Moved the NTLM authentication code to the new vauth directory
Diffstat (limited to 'lib/curl_sasl.c')
-rw-r--r--lib/curl_sasl.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c
index c57bc37a7..aabf3ecf5 100644
--- a/lib/curl_sasl.c
+++ b/lib/curl_sasl.c
@@ -70,27 +70,6 @@ const struct {
{ ZERO_NULL, 0, 0 }
};
-#if defined(USE_NTLM) && !defined(USE_WINDOWS_SSPI)
-/*
- * Curl_sasl_ntlm_cleanup()
- *
- * This is used to clean up the NTLM specific data.
- *
- * Parameters:
- *
- * ntlm [in/out] - The NTLM data struct being cleaned up.
- *
- */
-void Curl_sasl_ntlm_cleanup(struct ntlmdata *ntlm)
-{
- /* Free the target info */
- Curl_safefree(ntlm->target_info);
-
- /* Reset any variables */
- ntlm->target_info_len = 0;
-}
-#endif /* USE_NTLM && !USE_WINDOWS_SSPI*/
-
/*
* sasl_create_oauth_bearer_message()
*