summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2016-07-22 20:38:32 +0100
committerSteve Holme <steve_holme@hotmail.com>2016-07-23 21:29:16 +0100
commit25bf71ab0757694e691ad77c48fa6c438df9416e (patch)
tree4ad45c9fc8930253ad452b40f409b5fc9b94ab7f
parentc7468e8ea2eeac748bb1f3d1410d2de55e9b5802 (diff)
downloadgnurl-25bf71ab0757694e691ad77c48fa6c438df9416e.tar.gz
gnurl-25bf71ab0757694e691ad77c48fa6c438df9416e.tar.bz2
gnurl-25bf71ab0757694e691ad77c48fa6c438df9416e.zip
spnego: Corrected miss-placed * in Curl_auth_spnego_cleanup() declaration
Typo introduced in commit ad5e9bfd5d.
-rw-r--r--lib/vauth/spnego_gssapi.c2
-rw-r--r--lib/vauth/spnego_sspi.c2
-rw-r--r--lib/vauth/vauth.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/vauth/spnego_gssapi.c b/lib/vauth/spnego_gssapi.c
index 9323bbbfb..b256ee616 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 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) {
diff --git a/lib/vauth/vauth.h b/lib/vauth/vauth.h
index acff64275..0c3cc18cb 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 */