Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
f177506f
Unverified
Commit
f177506f
authored
Nov 20, 2019
by
Stéphane Graber
Committed by
GitHub
Nov 20, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3190 from idatahu/fix_ovs_log
fix wrong order of bridge/nic in error message
parents
e166e391
53796b94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
network.c
src/lxc/network.c
+2
-2
No files found.
src/lxc/network.c
View file @
f177506f
...
...
@@ -2466,7 +2466,7 @@ int lxc_ovs_delete_port(const char *bridge, const char *nic)
lxc_ovs_delete_port_exec
,
(
void
*
)
&
args
);
if
(
ret
<
0
)
{
ERROR
(
"Failed to delete
\"
%s
\"
from openvswitch bridge
\"
%s
\"
: "
"%s"
,
bridge
,
nic
,
cmd_output
);
"%s"
,
nic
,
bridge
,
cmd_output
);
return
-
1
;
}
...
...
@@ -2494,7 +2494,7 @@ static int lxc_ovs_attach_bridge(const char *bridge, const char *nic)
lxc_ovs_attach_bridge_exec
,
(
void
*
)
&
args
);
if
(
ret
<
0
)
{
ERROR
(
"Failed to attach
\"
%s
\"
to openvswitch bridge
\"
%s
\"
: %s"
,
bridge
,
nic
,
cmd_output
);
nic
,
bridge
,
cmd_output
);
return
-
1
;
}
...
...
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