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:
parent
c7468e8ea2
commit
25bf71ab07
@ -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;
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user