diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-07-22 20:38:32 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-07-23 21:29:16 +0100 |
commit | 25bf71ab0757694e691ad77c48fa6c438df9416e (patch) | |
tree | 4ad45c9fc8930253ad452b40f409b5fc9b94ab7f /lib/vauth/spnego_sspi.c | |
parent | c7468e8ea2eeac748bb1f3d1410d2de55e9b5802 (diff) | |
download | curl-25bf71ab0757694e691ad77c48fa6c438df9416e.tar.gz |
spnego: Corrected miss-placed * in Curl_auth_spnego_cleanup() declaration
Typo introduced in commit ad5e9bfd5d.
Diffstat (limited to 'lib/vauth/spnego_sspi.c')
-rw-r--r-- | lib/vauth/spnego_sspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c index c0ef54691..b6176ece1 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) { |