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
397a634e
Commit
397a634e
authored
10 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
smb.c: use size_t as input argument types for msg sizes
This fixes warnings about conversions to int
parent
b14ebbcb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/smb.c
+2
-2
2 additions, 2 deletions
lib/smb.c
with
2 additions
and
2 deletions
lib/smb.c
+
2
−
2
View file @
397a634e
...
...
@@ -303,7 +303,7 @@ static void smb_pop_message(struct connectdata *conn)
}
static
void
smb_format_message
(
struct
connectdata
*
conn
,
struct
smb_header
*
h
,
unsigned
char
cmd
,
in
t
len
)
unsigned
char
cmd
,
size_
t
len
)
{
struct
smb_conn
*
smbc
=
&
conn
->
proto
.
smbc
;
struct
smb_request
*
req
=
conn
->
data
->
req
.
protop
;
...
...
@@ -365,7 +365,7 @@ static CURLcode smb_flush(struct connectdata *conn)
}
static
CURLcode
smb_send_message
(
struct
connectdata
*
conn
,
unsigned
char
cmd
,
const
void
*
msg
,
in
t
msg_len
)
const
void
*
msg
,
size_
t
msg_len
)
{
struct
smb_conn
*
smbc
=
&
conn
->
proto
.
smbc
;
...
...
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