Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bake
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
bake
Commits
cd929a55
Commit
cd929a55
authored
Dec 12, 2017
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return 0 on success...
parent
3f6c5b6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
bb-proxy-server-daemon.c
tests/proxy/bb-proxy-server-daemon.c
+1
-1
bb-proxy-test.c
tests/proxy/bb-proxy-test.c
+1
-1
No files found.
tests/proxy/bb-proxy-server-daemon.c
View file @
cd929a55
...
...
@@ -192,7 +192,7 @@ static void proxy_bulk_write_ult(hg_handle_t handle)
assert
(
ret
==
0
);
/* set return value */
out
.
ret
=
2
;
out
.
ret
=
0
;
hret
=
margo_respond
(
handle
,
&
out
);
assert
(
hret
==
HG_SUCCESS
);
...
...
tests/proxy/bb-proxy-test.c
View file @
cd929a55
...
...
@@ -156,7 +156,7 @@ int main(int argc, char *argv[])
}
/* check return code */
if
(
out
.
ret
!=
2
)
if
(
out
.
ret
!=
0
)
{
fprintf
(
stderr
,
"Error: unexpected return from bake proxy write RPC
\n
"
);
free
(
buf
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment