diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-14 22:20:28 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-14 23:27:19 +0000 |
commit | cca12abf6ebd920134c772c2825b53fcc188d9ab (patch) | |
tree | be0bf7f329296ec1ade5271ce7bd5416b33bda7e /lib | |
parent | 18e53fa91ac56ca55c1dcbc5bbff8e1157304623 (diff) |
sasl_sspi: Corrected a couple of comment typos
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_sasl_sspi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/curl_sasl_sspi.c b/lib/curl_sasl_sspi.c index b07623fb9..10906e539 100644 --- a/lib/curl_sasl_sspi.c +++ b/lib/curl_sasl_sspi.c @@ -868,15 +868,15 @@ CURLcode Curl_sasl_create_gssapi_security_message(struct SessionHandle *data, return CURLE_BAD_CONTENT_ENCODING; } - /* Not 4 octets long to fail as per RFC4752 Section 3.1 */ + /* Not 4 octets long so fail as per RFC4752 Section 3.1 */ if(input_buf[1].cbBuffer != 4) { Curl_safefree(chlg); return CURLE_BAD_CONTENT_ENCODING; } - /* Copy the data out into a coinput_bufnvenient variable and free the SSPI - allocated buffer as it is not required anymore */ + /* Copy the data out and free the SSPI allocated buffer as it is not required + anymore */ memcpy(&indata, input_buf[1].pvBuffer, 4); s_pSecFn->FreeContextBuffer(input_buf[1].pvBuffer); |