Skip to content
Snippets Groups Projects
Commit 25bf71ab authored by Steve Holme's avatar Steve Holme
Browse files

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

Typo introduced in commit ad5e9bfd.
parent c7468e8e
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, ...@@ -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;
......
...@@ -265,7 +265,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, ...@@ -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) {
......
...@@ -182,7 +182,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, ...@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment