summaryrefslogtreecommitdiff
path: root/lib/vauth/digest_sspi.c
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2017-03-26 17:02:22 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-03-26 23:56:23 +0200
commitf7df67cff0a756eefc8daea36e6468df694a43d0 (patch)
tree5c0f0e6547531e4681d1bf5ec88c24db322fe96f /lib/vauth/digest_sspi.c
parent8e65877870c1fac920b65219adec720df810aab9 (diff)
downloadgnurl-f7df67cff0a756eefc8daea36e6468df694a43d0.tar.gz
gnurl-f7df67cff0a756eefc8daea36e6468df694a43d0.tar.bz2
gnurl-f7df67cff0a756eefc8daea36e6468df694a43d0.zip
spelling fixes
Closes #1356
Diffstat (limited to 'lib/vauth/digest_sspi.c')
-rw-r--r--lib/vauth/digest_sspi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/vauth/digest_sspi.c b/lib/vauth/digest_sspi.c
index a6eea5ca6..0bd94442d 100644
--- a/lib/vauth/digest_sspi.c
+++ b/lib/vauth/digest_sspi.c
@@ -6,7 +6,7 @@
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2014 - 2016, Steve Holme, <steve_holme@hotmail.com>.
- * Copyright (C) 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2015 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -320,7 +320,7 @@ CURLcode Curl_override_sspi_http_realm(const char *chlg,
/*
* Curl_auth_decode_digest_http_message()
*
- * This is used to decode a HTTP DIGEST challenge message into the seperate
+ * This is used to decode a HTTP DIGEST challenge message into the separate
* attributes.
*
* Parameters:
@@ -550,7 +550,7 @@ CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data,
if(!digest->http_context)
return CURLE_OUT_OF_MEMORY;
- /* Generate our reponse message */
+ /* Generate our response message */
status = s_pSecFn->InitializeSecurityContext(&credentials, NULL,
spn,
ISC_REQ_USE_HTTP_STYLE, 0, 0,
@@ -586,7 +586,7 @@ CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data,
return CURLE_OUT_OF_MEMORY;
}
- /* Copy the generated reponse */
+ /* Copy the generated response */
memcpy(resp, output_token, output_token_len);
resp[output_token_len] = 0;