Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Packetdrill_tarr_ext
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Stefan Gense
Packetdrill_tarr_ext
Commits
b9c404fe
Commit
b9c404fe
authored
9 years ago
by
Michael Tüxen
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation in Linux and probably on NetBSD.
While there, remove trailing whitespaces.
parent
c8e07616
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
gtests/net/packetdrill/run_system_call.c
+4
-5
4 additions, 5 deletions
gtests/net/packetdrill/run_system_call.c
with
4 additions
and
5 deletions
gtests/net/packetdrill/run_system_call.c
+
4
−
5
View file @
b9c404fe
...
...
@@ -3181,7 +3181,6 @@ static int check_sctp_sndrcvinfo(struct sctp_sndrcvinfo_expr *expr,
}
return
STATUS_OK
;
}
#endif
static
int
check_sockaddr
(
struct
expression
*
sockaddr_expr
,
struct
sockaddr
*
live_addr
,
char
**
error
)
{
...
...
@@ -3245,7 +3244,7 @@ static int check_sockaddr(struct expression *sockaddr_expr, struct sockaddr *liv
}
return
STATUS_OK
;
}
#endif
static
int
syscall_sctp_recvmsg
(
struct
state
*
state
,
struct
syscall_spec
*
syscall
,
struct
expression_list
*
args
,
...
...
@@ -3765,7 +3764,7 @@ static int syscall_sctp_recvv(struct state *state, struct syscall_spec *syscall,
result
=
sctp_recvv
(
live_fd
,
iov
,
iovlen
,
(
struct
sockaddr
*
)
from
,
&
fromlen
,
info
,
&
infolen
,
&
infotype
,
&
flags
);
iovec_free
(
iov
,
script_iovec_list_len
);
if
(
end_syscall
(
state
,
syscall
,
CHECK_EXACT
,
result
,
error
))
{
free
(
from
);
return
STATUS_ERR
;
...
...
@@ -3782,7 +3781,7 @@ static int syscall_sctp_recvv(struct state *state, struct syscall_spec *syscall,
if
(
infotype_expr
->
type
!=
EXPR_ELLIPSIS
)
{
s32
script_infotype
;
if
(
s32_bracketed_arg
(
args
,
7
,
&
script_infotype
,
error
))
return
STATUS_ERR
;
return
STATUS_ERR
;
if
(
infotype
!=
script_infotype
)
{
asprintf
(
error
,
"sctp_recvv infotype: expected: %u actual: %u"
,
...
...
@@ -3832,7 +3831,7 @@ static int syscall_sctp_recvv(struct state *state, struct syscall_spec *syscall,
if
(
flags_expr
->
type
!=
EXPR_ELLIPSIS
)
{
s32
script_flags
;
if
(
s32_bracketed_arg
(
args
,
8
,
&
script_flags
,
error
))
return
STATUS_ERR
;
return
STATUS_ERR
;
if
(
flags
!=
script_flags
)
{
asprintf
(
error
,
"sctp_recvv flags bad return value. expected %d, actual %d"
,
script_flags
,
flags
);
...
...
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