aboutsummaryrefslogtreecommitdiff
path: root/lib/vauth/oauth2.c
diff options
context:
space:
mode:
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;