Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
d4ea5173
Commit
d4ea5173
authored
10 years ago
by
Steve Holme
Browse files
Options
Downloads
Patches
Plain Diff
sasl_sspi: Fixed some typos
parent
2ae142e6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/curl_sasl_sspi.c
+5
-5
5 additions, 5 deletions
lib/curl_sasl_sspi.c
with
5 additions
and
5 deletions
lib/curl_sasl_sspi.c
+
5
−
5
View file @
d4ea5173
...
...
@@ -147,7 +147,7 @@ CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
if
(
!
chlg
)
return
CURLE_BAD_CONTENT_ENCODING
;
/* Ensure we have some login cred
i
entials as DigestSSP cannot use the current
/* Ensure we have some login credentials as DigestSSP cannot use the current
Windows user like NTLMSSP can */
if
(
!
userp
||
!*
userp
)
{
Curl_safefree
(
chlg
);
...
...
@@ -195,7 +195,7 @@ CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
return
result
;
}
/* Acquire our cred
i
entials handle */
/* Acquire our credentials handle */
status
=
s_pSecFn
->
AcquireCredentialsHandle
(
NULL
,
(
TCHAR
*
)
TEXT
(
"WDigest"
),
SECPKG_CRED_OUTBOUND
,
NULL
,
...
...
@@ -358,7 +358,7 @@ CURLcode Curl_sasl_create_gssapi_user_message(struct SessionHandle *data,
memset
(
krb5
->
credentials
,
0
,
sizeof
(
CredHandle
));
/* Acquire our cred
i
entials handle */
/* Acquire our credentials handle */
status
=
s_pSecFn
->
AcquireCredentialsHandle
(
NULL
,
(
TCHAR
*
)
TEXT
(
"Kerberos"
),
SECPKG_CRED_OUTBOUND
,
NULL
,
...
...
@@ -676,14 +676,14 @@ CURLcode Curl_sasl_create_gssapi_security_message(struct SessionHandle *data,
void
Curl_sasl_gssapi_cleanup
(
struct
kerberos5data
*
krb5
)
{
/* Free
the
context */
/* Free
our security
context */
if
(
krb5
->
context
)
{
s_pSecFn
->
DeleteSecurityContext
(
krb5
->
context
);
free
(
krb5
->
context
);
krb5
->
context
=
NULL
;
}
/* Free
the
cred
i
entials handle */
/* Free
our
credentials handle */
if
(
krb5
->
credentials
)
{
s_pSecFn
->
FreeCredentialsHandle
(
krb5
->
credentials
);
free
(
krb5
->
credentials
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment