aboutsummaryrefslogtreecommitdiff
path: root/lib/vauth/oauth2.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2016-03-13 11:28:42 +0000
committerSteve Holme <steve_holme@hotmail.com>2016-03-25 17:40:12 +0000
commit58a7bc96eca33c4b6483ed25d0b1547ce8ec0d89 (patch)
tree838bce407fb6d98d8af66448f86b04c414eeb81b /lib/vauth/oauth2.c
parent7d2a5a05f64c51107b962ff19f85052ab251323a (diff)
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.
Diffstat (limited to 'lib/vauth/oauth2.c')
-rw-r--r--lib/vauth/oauth2.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/vauth/oauth2.c b/lib/vauth/oauth2.c
index dcee71b6a..0c80c8bb4 100644
--- a/lib/vauth/oauth2.c
+++ b/lib/vauth/oauth2.c
@@ -37,7 +37,7 @@
#include "memdebug.h"
/*
- * sasl_create_oauth_bearer_message()
+ * Curl_auth_create_oauth_bearer_message()
*
* This is used to generate an already encoded OAuth 2.0 message ready for
* sending to the recipient.
@@ -55,12 +55,12 @@
*
* Returns CURLE_OK on success.
*/
-CURLcode sasl_create_oauth_bearer_message(struct SessionHandle *data,
- const char *user,
- const char *host,
- const long port,
- const char *bearer,
- char **outptr, size_t *outlen)
+CURLcode Curl_auth_create_oauth_bearer_message(struct SessionHandle *data,
+ const char *user,
+ const char *host,
+ const long port,
+ const char *bearer,
+ char **outptr, size_t *outlen)
{
CURLcode result = CURLE_OK;
char *oauth = NULL;