diff --git a/lib/vauth/spnego_gssapi.c b/lib/vauth/spnego_gssapi.c index 9323bbbfbfb46905f4a48c07c6140a311d7e6dc3..b256ee6167e79a9791d750540704f0d416ac44b4 100644 --- a/lib/vauth/spnego_gssapi.c +++ b/lib/vauth/spnego_gssapi.c @@ -229,7 +229,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, * 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; diff --git a/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c index c0ef54691e0997d938dc6d55a41761167a75875e..b6176ece16699c08b018569eb320e4d6a39026f3 100644 --- a/lib/vauth/spnego_sspi.c +++ b/lib/vauth/spnego_sspi.c @@ -265,7 +265,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, * 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 */ if(nego->context) { diff --git a/lib/vauth/vauth.h b/lib/vauth/vauth.h index acff6427520970365f9474b58012abe51f161e7f..0c3cc18cb705492271c36a434d5937df5b9615dd 100644 --- a/lib/vauth/vauth.h +++ b/lib/vauth/vauth.h @@ -182,7 +182,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data, char **outptr, size_t *outlen); /* 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 */