From 58a7bc96eca33c4b6483ed25d0b1547ce8ec0d89 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 13 Mar 2016 11:28:42 +0000 Subject: vauth: Refactored function names after move to new vauth directory Renamed all the SASL functions that moved to the new vauth directory to include the correct module name. --- lib/vauth/vauth.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/vauth/vauth.c') diff --git a/lib/vauth/vauth.c b/lib/vauth/vauth.c index b21caeafd..7ed60b11d 100644 --- a/lib/vauth/vauth.c +++ b/lib/vauth/vauth.c @@ -33,7 +33,7 @@ #include "memdebug.h" /* - * Curl_sasl_build_spn() + * Curl_auth_build_spn() * * This is used to build a SPN string in the format service/instance. * @@ -45,13 +45,13 @@ * Returns a pointer to the newly allocated SPN. */ #if !defined(USE_WINDOWS_SSPI) -char *Curl_sasl_build_spn(const char *service, const char *instance) +char *Curl_auth_build_spn(const char *service, const char *instance) { /* Generate and return our SPN */ return aprintf("%s/%s", service, instance); } #else -TCHAR *Curl_sasl_build_spn(const char *service, const char *instance) +TCHAR *Curl_auth_build_spn(const char *service, const char *instance) { char *utf8_spn = NULL; TCHAR *tchar_spn = NULL; @@ -87,7 +87,7 @@ TCHAR *Curl_sasl_build_spn(const char *service, const char *instance) #if defined(HAVE_GSSAPI) /* - * Curl_sasl_build_gssapi_spn() + * Curl_auth_build_gssapi_spn() * * This is used to build a SPN string in the format service@instance. * @@ -98,7 +98,7 @@ TCHAR *Curl_sasl_build_spn(const char *service, const char *instance) * * Returns a pointer to the newly allocated SPN. */ -char *Curl_sasl_build_gssapi_spn(const char *service, const char *instance) +char *Curl_auth_build_gssapi_spn(const char *service, const char *instance) { /* Generate and return our SPN */ return aprintf("%s@%s", service, instance); -- cgit v1.2.3