1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

spnego: Corrected miss-placed * in Curl_auth_spnego_cleanup() declaration

Typo introduced in commit ad5e9bfd5d.
This commit is contained in:
Steve Holme 2016-07-22 20:38:32 +01:00
parent c7468e8ea2
commit 25bf71ab07
3 changed files with 3 additions and 3 deletions

View File

@ -229,7 +229,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_spnego_cleanup(struct negotiatedata *nego)
{ {
OM_uint32 minor_status; OM_uint32 minor_status;

View File

@ -265,7 +265,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_spnego_cleanup(struct negotiatedata *nego)
{ {
/* Free our security context */ /* Free our security context */
if(nego->context) { if(nego->context) {

View File

@ -182,7 +182,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data,
char **outptr, size_t *outlen); char **outptr, size_t *outlen);
/* This is used to clean up the SPNEGO specifiec data */ /* This is used to clean up the SPNEGO specifiec data */
void Curl_auth_spnego_cleanup(struct negotiatedata* nego); void Curl_auth_spnego_cleanup(struct negotiatedata *nego);
#endif /* (HAVE_GSSAPI || USE_WINDOWS_SSPI) && USE_SPNEGO */ #endif /* (HAVE_GSSAPI || USE_WINDOWS_SSPI) && USE_SPNEGO */