Commit 6f964e4f authored by Steve Holme's avatar Steve Holme
Browse files

sasl: Small comment style tidy up following ntlm commit

parent d9ca9e98
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@
/*
 * Curl_sasl_create_plain_message()
 *
 * This is used to generate an already encoded plain message ready
 * This is used to generate an already encoded PLAIN message ready
 * for sending to the recipient.
 *
 * Parameters:
@@ -82,7 +82,7 @@ CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data,
/*
 * Curl_sasl_create_login_message()
 *
 * This is used to generate an already encoded login message containing the
 * This is used to generate an already encoded LOGIN message containing the
 * user name or password ready for sending to the recipient.
 *
 * Parameters:
+2 −2
Original line number Diff line number Diff line
@@ -33,13 +33,13 @@
#define SASL_AUTH_EXTERNAL      0x0020
#define SASL_AUTH_NTLM          0x0040

/* This is used to generate a base64 encoded plain authentication message */
/* This is used to generate a base64 encoded PLAIN authentication message */
CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data,
                                        const char* userp,
                                        const char* passwdp,
                                        char **outptr, size_t *outlen);

/* This is used to generate a base64 encoded login authentication message
/* This is used to generate a base64 encoded LOGIN authentication message
   containing either the user name or password details */
CURLcode Curl_sasl_create_login_message(struct SessionHandle *data,
                                        const char* valuep, char **outptr,