Skip to content

Commit

Permalink
auth: Rename the various authentication clean up functions
Browse files Browse the repository at this point in the history
For consistency and to a avoid confusion.

Closes #3869
  • Loading branch information
captain-caveman2k committed May 12, 2019
1 parent 4d8461a commit 52dfab6
Show file tree
Hide file tree
Showing 18 changed files with 54 additions and 53 deletions.
4 changes: 2 additions & 2 deletions lib/curl_ntlm_wb.c
Expand Up @@ -74,7 +74,7 @@
# define sclose_nolog(x) close((x)) # define sclose_nolog(x) close((x))
#endif #endif


void Curl_ntlm_wb_cleanup(struct connectdata *conn) void Curl_http_auth_cleanup_ntlm_wb(struct connectdata *conn)
{ {
if(conn->ntlm_auth_hlpr_socket != CURL_SOCKET_BAD) { if(conn->ntlm_auth_hlpr_socket != CURL_SOCKET_BAD) {
sclose(conn->ntlm_auth_hlpr_socket); sclose(conn->ntlm_auth_hlpr_socket);
Expand Down Expand Up @@ -423,7 +423,7 @@ CURLcode Curl_output_ntlm_wb(struct connectdata *conn,
DEBUG_OUT(fprintf(stderr, "**** %s\n ", *allocuserpwd)); DEBUG_OUT(fprintf(stderr, "**** %s\n ", *allocuserpwd));
ntlm->state = NTLMSTATE_TYPE3; /* we sent a type-3 */ ntlm->state = NTLMSTATE_TYPE3; /* we sent a type-3 */
authp->done = TRUE; authp->done = TRUE;
Curl_ntlm_wb_cleanup(conn); Curl_http_auth_cleanup_ntlm_wb(conn);
if(!*allocuserpwd) if(!*allocuserpwd)
return CURLE_OUT_OF_MEMORY; return CURLE_OUT_OF_MEMORY;
break; break;
Expand Down
4 changes: 2 additions & 2 deletions lib/curl_ntlm_wb.h
Expand Up @@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
Expand All @@ -31,7 +31,7 @@
to Samba's winbind daemon helper ntlm_auth */ to Samba's winbind daemon helper ntlm_auth */
CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy); CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy);


void Curl_ntlm_wb_cleanup(struct connectdata *conn); void Curl_http_auth_cleanup_ntlm_wb(struct connectdata *conn);


#endif /* !CURL_DISABLE_HTTP && USE_NTLM && NTLM_WB_ENABLED */ #endif /* !CURL_DISABLE_HTTP && USE_NTLM && NTLM_WB_ENABLED */


Expand Down
4 changes: 2 additions & 2 deletions lib/curl_sasl.c
Expand Up @@ -83,14 +83,14 @@ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused)
#if defined(USE_KERBEROS5) #if defined(USE_KERBEROS5)
/* Cleanup the gssapi structure */ /* Cleanup the gssapi structure */
if(authused == SASL_MECH_GSSAPI) { if(authused == SASL_MECH_GSSAPI) {
Curl_auth_gssapi_cleanup(&conn->krb5); Curl_auth_cleanup_gssapi(&conn->krb5);
} }
#endif #endif


#if defined(USE_NTLM) #if defined(USE_NTLM)
/* Cleanup the NTLM structure */ /* Cleanup the NTLM structure */
if(authused == SASL_MECH_NTLM) { if(authused == SASL_MECH_NTLM) {
Curl_auth_ntlm_cleanup(&conn->ntlm); Curl_auth_cleanup_ntlm(&conn->ntlm);
} }
#endif #endif


Expand Down
2 changes: 1 addition & 1 deletion lib/easy.c
Expand Up @@ -963,7 +963,7 @@ void curl_easy_reset(struct Curl_easy *data)
memset(&data->state.authproxy, 0, sizeof(struct auth)); memset(&data->state.authproxy, 0, sizeof(struct auth));


#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH) #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH)
Curl_digest_cleanup(data); Curl_http_auth_cleanup_digest(data);
#endif #endif
} }


Expand Down
5 changes: 3 additions & 2 deletions lib/http_digest.c
Expand Up @@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
Expand All @@ -28,6 +28,7 @@
#include "strcase.h" #include "strcase.h"
#include "vauth/vauth.h" #include "vauth/vauth.h"
#include "http_digest.h" #include "http_digest.h"

/* The last 3 #include files should be in this order */ /* The last 3 #include files should be in this order */
#include "curl_printf.h" #include "curl_printf.h"
#include "curl_memory.h" #include "curl_memory.h"
Expand Down Expand Up @@ -171,7 +172,7 @@ CURLcode Curl_output_digest(struct connectdata *conn,
return CURLE_OK; return CURLE_OK;
} }


void Curl_digest_cleanup(struct Curl_easy *data) void Curl_http_auth_cleanup_digest(struct Curl_easy *data)
{ {
Curl_auth_digest_cleanup(&data->state.digest); Curl_auth_digest_cleanup(&data->state.digest);
Curl_auth_digest_cleanup(&data->state.proxydigest); Curl_auth_digest_cleanup(&data->state.proxydigest);
Expand Down
2 changes: 1 addition & 1 deletion lib/http_digest.h
Expand Up @@ -35,7 +35,7 @@ CURLcode Curl_output_digest(struct connectdata *conn,
const unsigned char *request, const unsigned char *request,
const unsigned char *uripath); const unsigned char *uripath);


void Curl_digest_cleanup(struct Curl_easy *data); void Curl_http_auth_cleanup_digest(struct Curl_easy *data);


#endif /* !CURL_DISABLE_HTTP && !CURL_DISABLE_CRYPTO_AUTH */ #endif /* !CURL_DISABLE_HTTP && !CURL_DISABLE_CRYPTO_AUTH */


Expand Down
14 changes: 7 additions & 7 deletions lib/http_negotiate.c
Expand Up @@ -84,12 +84,12 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
if(!len) { if(!len) {
if(neg_ctx->state == GSS_AUTHSUCC) { if(neg_ctx->state == GSS_AUTHSUCC) {
infof(conn->data, "Negotiate auth restarted\n"); infof(conn->data, "Negotiate auth restarted\n");
Curl_cleanup_negotiate(conn); Curl_http_auth_cleanup_negotiate(conn);
} }
else if(neg_ctx->state != GSS_AUTHNONE) { else if(neg_ctx->state != GSS_AUTHNONE) {
/* The server rejected our authentication and hasn't supplied any more /* The server rejected our authentication and hasn't supplied any more
negotiation mechanisms */ negotiation mechanisms */
Curl_cleanup_negotiate(conn); Curl_http_auth_cleanup_negotiate(conn);
return CURLE_LOGIN_DENIED; return CURLE_LOGIN_DENIED;
} }
} }
Expand All @@ -104,7 +104,7 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
host, header, neg_ctx); host, header, neg_ctx);


if(result) if(result)
Curl_auth_spnego_cleanup(neg_ctx); Curl_auth_cleanup_spnego(neg_ctx);


return result; return result;
} }
Expand Down Expand Up @@ -139,7 +139,7 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
if(neg_ctx->noauthpersist && neg_ctx->state == GSS_AUTHSUCC) { if(neg_ctx->noauthpersist && neg_ctx->state == GSS_AUTHSUCC) {
infof(conn->data, "Curl_output_negotiate, " infof(conn->data, "Curl_output_negotiate, "
"no persistent authentication: cleanup existing context"); "no persistent authentication: cleanup existing context");
Curl_auth_spnego_cleanup(neg_ctx); Curl_auth_cleanup_spnego(neg_ctx);
} }
if(!neg_ctx->context) { if(!neg_ctx->context) {
result = Curl_input_negotiate(conn, proxy, "Negotiate"); result = Curl_input_negotiate(conn, proxy, "Negotiate");
Expand Down Expand Up @@ -203,10 +203,10 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
return CURLE_OK; return CURLE_OK;
} }


void Curl_cleanup_negotiate(struct connectdata *conn) void Curl_http_auth_cleanup_negotiate(struct connectdata *conn)
{ {
Curl_auth_spnego_cleanup(&conn->negotiate); Curl_auth_cleanup_spnego(&conn->negotiate);
Curl_auth_spnego_cleanup(&conn->proxyneg); Curl_auth_cleanup_spnego(&conn->proxyneg);
} }


#endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */ #endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */
2 changes: 1 addition & 1 deletion lib/http_negotiate.h
Expand Up @@ -31,7 +31,7 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
/* this is for creating Negotiate header output */ /* this is for creating Negotiate header output */
CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy); CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);


void Curl_cleanup_negotiate(struct connectdata *conn); void Curl_http_auth_cleanup_negotiate(struct connectdata *conn);


#endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */ #endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */


Expand Down
14 changes: 7 additions & 7 deletions lib/http_ntlm.c
Expand Up @@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
Expand Down Expand Up @@ -88,11 +88,11 @@ CURLcode Curl_input_ntlm(struct connectdata *conn,
else { else {
if(ntlm->state == NTLMSTATE_LAST) { if(ntlm->state == NTLMSTATE_LAST) {
infof(conn->data, "NTLM auth restarted\n"); infof(conn->data, "NTLM auth restarted\n");
Curl_http_ntlm_cleanup(conn); Curl_http_auth_cleanup_ntlm(conn);
} }
else if(ntlm->state == NTLMSTATE_TYPE3) { else if(ntlm->state == NTLMSTATE_TYPE3) {
infof(conn->data, "NTLM handshake rejected\n"); infof(conn->data, "NTLM handshake rejected\n");
Curl_http_ntlm_cleanup(conn); Curl_http_auth_cleanup_ntlm(conn);
ntlm->state = NTLMSTATE_NONE; ntlm->state = NTLMSTATE_NONE;
return CURLE_REMOTE_ACCESS_DENIED; return CURLE_REMOTE_ACCESS_DENIED;
} }
Expand Down Expand Up @@ -241,13 +241,13 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy)
return CURLE_OK; return CURLE_OK;
} }


void Curl_http_ntlm_cleanup(struct connectdata *conn) void Curl_http_auth_cleanup_ntlm(struct connectdata *conn)
{ {
Curl_auth_ntlm_cleanup(&conn->ntlm); Curl_auth_cleanup_ntlm(&conn->ntlm);
Curl_auth_ntlm_cleanup(&conn->proxyntlm); Curl_auth_cleanup_ntlm(&conn->proxyntlm);


#if defined(NTLM_WB_ENABLED) #if defined(NTLM_WB_ENABLED)
Curl_ntlm_wb_cleanup(conn); Curl_http_auth_cleanup_ntlm_wb(conn);
#endif #endif
} }


Expand Down
2 changes: 1 addition & 1 deletion lib/http_ntlm.h
Expand Up @@ -33,7 +33,7 @@ CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy,
/* this is for creating ntlm header output */ /* this is for creating ntlm header output */
CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);


void Curl_http_ntlm_cleanup(struct connectdata *conn); void Curl_http_auth_cleanup_ntlm(struct connectdata *conn);


#endif /* !CURL_DISABLE_HTTP && USE_NTLM */ #endif /* !CURL_DISABLE_HTTP && USE_NTLM */


Expand Down
8 changes: 4 additions & 4 deletions lib/url.c
Expand Up @@ -380,7 +380,7 @@ CURLcode Curl_close(struct Curl_easy *data)
data->asi = NULL; data->asi = NULL;
#endif #endif
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH) #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_CRYPTO_AUTH)
Curl_digest_cleanup(data); Curl_http_auth_cleanup_digest(data);
#endif #endif
Curl_safefree(data->info.contenttype); Curl_safefree(data->info.contenttype);
Curl_safefree(data->info.wouldredirect); Curl_safefree(data->info.wouldredirect);
Expand Down Expand Up @@ -697,7 +697,7 @@ static void conn_shutdown(struct connectdata *conn)


#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \ #if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) && \
defined(NTLM_WB_ENABLED) defined(NTLM_WB_ENABLED)
Curl_ntlm_wb_cleanup(conn); Curl_http_auth_cleanup_ntlm_wb(conn);
#endif #endif


/* unlink ourselves. this should be called last since other shutdown /* unlink ourselves. this should be called last since other shutdown
Expand Down Expand Up @@ -801,11 +801,11 @@ CURLcode Curl_disconnect(struct Curl_easy *data,


#if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM) #if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM)
/* Cleanup NTLM connection-related data */ /* Cleanup NTLM connection-related data */
Curl_http_ntlm_cleanup(conn); Curl_http_auth_cleanup_ntlm(conn);
#endif #endif
#if !defined(CURL_DISABLE_HTTP) && defined(USE_SPNEGO) #if !defined(CURL_DISABLE_HTTP) && defined(USE_SPNEGO)
/* Cleanup NEGOTIATE connection-related data */ /* Cleanup NEGOTIATE connection-related data */
Curl_cleanup_negotiate(conn); Curl_http_auth_cleanup_negotiate(conn);
#endif #endif


/* the protocol specific disconnect handler and conn_shutdown need a transfer /* the protocol specific disconnect handler and conn_shutdown need a transfer
Expand Down
6 changes: 3 additions & 3 deletions lib/vauth/krb5_gssapi.c
Expand Up @@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 2014 - 2017, Steve Holme, <steve_holme@hotmail.com>. * Copyright (C) 2014 - 2019, Steve Holme, <steve_holme@hotmail.com>.
* Copyright (C) 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
Expand Down Expand Up @@ -372,7 +372,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
} }


/* /*
* Curl_auth_gssapi_cleanup() * Curl_auth_cleanup_gssapi()
* *
* This is used to clean up the GSSAPI (Kerberos V5) specific data. * This is used to clean up the GSSAPI (Kerberos V5) specific data.
* *
Expand All @@ -381,7 +381,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
* krb5 [in/out] - The Kerberos 5 data struct being cleaned up. * krb5 [in/out] - The Kerberos 5 data struct being cleaned up.
* *
*/ */
void Curl_auth_gssapi_cleanup(struct kerberos5data *krb5) void Curl_auth_cleanup_gssapi(struct kerberos5data *krb5)
{ {
OM_uint32 minor_status; OM_uint32 minor_status;


Expand Down
6 changes: 3 additions & 3 deletions lib/vauth/krb5_sspi.c
Expand Up @@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 2014 - 2017, Steve Holme, <steve_holme@hotmail.com>. * Copyright (C) 2014 - 2019, Steve Holme, <steve_holme@hotmail.com>.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
Expand Down Expand Up @@ -474,7 +474,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
} }


/* /*
* Curl_auth_gssapi_cleanup() * Curl_auth_cleanup_gssapi()
* *
* This is used to clean up the GSSAPI (Kerberos V5) specific data. * This is used to clean up the GSSAPI (Kerberos V5) specific data.
* *
Expand All @@ -483,7 +483,7 @@ CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
* krb5 [in/out] - The Kerberos 5 data struct being cleaned up. * krb5 [in/out] - The Kerberos 5 data struct being cleaned up.
* *
*/ */
void Curl_auth_gssapi_cleanup(struct kerberos5data *krb5) void Curl_auth_cleanup_gssapi(struct kerberos5data *krb5)
{ {
/* Free our security context */ /* Free our security context */
if(krb5->context) { if(krb5->context) {
Expand Down
8 changes: 4 additions & 4 deletions lib/vauth/ntlm.c
Expand Up @@ -403,7 +403,7 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
(void)hostname, (void)hostname,


/* Clean up any former leftovers and initialise to defaults */ /* Clean up any former leftovers and initialise to defaults */
Curl_auth_ntlm_cleanup(ntlm); Curl_auth_cleanup_ntlm(ntlm);


#if defined(USE_NTRESPONSES) && defined(USE_NTLM2SESSION) #if defined(USE_NTRESPONSES) && defined(USE_NTLM2SESSION)
#define NTLM2FLAG NTLMFLAG_NEGOTIATE_NTLM2_KEY #define NTLM2FLAG NTLMFLAG_NEGOTIATE_NTLM2_KEY
Expand Down Expand Up @@ -844,13 +844,13 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
/* Return with binary blob encoded into base64 */ /* Return with binary blob encoded into base64 */
result = Curl_base64_encode(data, (char *)ntlmbuf, size, outptr, outlen); result = Curl_base64_encode(data, (char *)ntlmbuf, size, outptr, outlen);


Curl_auth_ntlm_cleanup(ntlm); Curl_auth_cleanup_ntlm(ntlm);


return result; return result;
} }


/* /*
* Curl_auth_ntlm_cleanup() * Curl_auth_cleanup_ntlm()
* *
* This is used to clean up the NTLM specific data. * This is used to clean up the NTLM specific data.
* *
Expand All @@ -859,7 +859,7 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
* ntlm [in/out] - The NTLM data struct being cleaned up. * ntlm [in/out] - The NTLM data struct being cleaned up.
* *
*/ */
void Curl_auth_ntlm_cleanup(struct ntlmdata *ntlm) void Curl_auth_cleanup_ntlm(struct ntlmdata *ntlm)
{ {
/* Free the target info */ /* Free the target info */
Curl_safefree(ntlm->target_info); Curl_safefree(ntlm->target_info);
Expand Down
8 changes: 4 additions & 4 deletions lib/vauth/ntlm_sspi.c
Expand Up @@ -95,7 +95,7 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
TimeStamp expiry; /* For Windows 9x compatibility of SSPI calls */ TimeStamp expiry; /* For Windows 9x compatibility of SSPI calls */


/* Clean up any former leftovers and initialise to defaults */ /* Clean up any former leftovers and initialise to defaults */
Curl_auth_ntlm_cleanup(ntlm); Curl_auth_cleanup_ntlm(ntlm);


/* Query the security package for NTLM */ /* Query the security package for NTLM */
status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM), status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM),
Expand Down Expand Up @@ -323,13 +323,13 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
result = Curl_base64_encode(data, (char *) ntlm->output_token, result = Curl_base64_encode(data, (char *) ntlm->output_token,
type_3_buf.cbBuffer, outptr, outlen); type_3_buf.cbBuffer, outptr, outlen);


Curl_auth_ntlm_cleanup(ntlm); Curl_auth_cleanup_ntlm(ntlm);


return result; return result;
} }


/* /*
* Curl_auth_ntlm_cleanup() * Curl_auth_cleanup_ntlm()
* *
* This is used to clean up the NTLM specific data. * This is used to clean up the NTLM specific data.
* *
Expand All @@ -338,7 +338,7 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
* ntlm [in/out] - The NTLM data struct being cleaned up. * ntlm [in/out] - The NTLM data struct being cleaned up.
* *
*/ */
void Curl_auth_ntlm_cleanup(struct ntlmdata *ntlm) void Curl_auth_cleanup_ntlm(struct ntlmdata *ntlm)
{ {
/* Free our security context */ /* Free our security context */
if(ntlm->context) { if(ntlm->context) {
Expand Down
6 changes: 3 additions & 3 deletions lib/vauth/spnego_gssapi.c
Expand Up @@ -97,7 +97,7 @@ CURLcode Curl_auth_decode_spnego_message(struct Curl_easy *data,
/* We finished successfully our part of authentication, but server /* We finished successfully our part of authentication, but server
* rejected it (since we're again here). Exit with an error since we * rejected it (since we're again here). Exit with an error since we
* can't invent anything better */ * can't invent anything better */
Curl_auth_spnego_cleanup(nego); Curl_auth_cleanup_spnego(nego);
return CURLE_LOGIN_DENIED; return CURLE_LOGIN_DENIED;
} }


Expand Down Expand Up @@ -238,7 +238,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data,
} }


/* /*
* Curl_auth_spnego_cleanup() * Curl_auth_cleanup_spnego()
* *
* This is used to clean up the SPNEGO (Negotiate) specific data. * This is used to clean up the SPNEGO (Negotiate) specific data.
* *
Expand All @@ -247,7 +247,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data,
* nego [in/out] - The Negotiate data struct being cleaned up. * nego [in/out] - The Negotiate data struct being cleaned up.
* *
*/ */
void Curl_auth_spnego_cleanup(struct negotiatedata *nego) void Curl_auth_cleanup_spnego(struct negotiatedata *nego)
{ {
OM_uint32 minor_status; OM_uint32 minor_status;


Expand Down

0 comments on commit 52dfab6

Please sign in to comment.