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
80009480
Commit
80009480
authored
10 years ago
by
Steve Holme
Browse files
Options
Downloads
Patches
Plain Diff
sasl_sspi: Fixed compilation warnings when no verbose string support
parent
9669794e
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
-1
5 additions, 1 deletion
lib/curl_sasl_sspi.c
with
5 additions
and
1 deletion
lib/curl_sasl_sspi.c
+
5
−
1
View file @
80009480
...
...
@@ -623,6 +623,10 @@ CURLcode Curl_sasl_decode_ntlm_type2_message(struct SessionHandle *data,
unsigned
char
*
type2
=
NULL
;
size_t
type2_len
=
0
;
#if defined(CURL_DISABLE_VERBOSE_STRINGS)
(
void
)
data
;
#endif
/* Decode the base-64 encoded type-2 message */
if
(
strlen
(
type2msg
)
&&
*
type2msg
!=
'='
)
{
result
=
Curl_base64_decode
(
type2msg
,
&
type2
,
&
type2_len
);
...
...
@@ -713,7 +717,7 @@ CURLcode Curl_sasl_create_ntlm_type3_message(struct SessionHandle *data,
}
/* Base64 encode the response */
result
=
Curl_base64_encode
(
NULL
,
(
char
*
)
ntlm
->
output_token
,
result
=
Curl_base64_encode
(
data
,
(
char
*
)
ntlm
->
output_token
,
type_3_buf
.
cbBuffer
,
outptr
,
outlen
);
Curl_sasl_ntlm_cleanup
(
ntlm
);
...
...
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