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
e15b2302
Unverified
Commit
e15b2302
authored
Oct 08, 2018
by
Christian Brauner
Committed by
GitHub
Oct 08, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2679 from 2xsec/bugfix
start: change log level
parents
cb2ce6d0
3e9bde7e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
file_utils.c
src/lxc/file_utils.c
+1
-1
start.c
src/lxc/start.c
+1
-1
No files found.
src/lxc/file_utils.c
View file @
e15b2302
...
...
@@ -302,7 +302,7 @@ FILE *fopen_cloexec(const char *path, const char *mode)
open_mode
|=
O_EXCL
;
open_mode
|=
O_CLOEXEC
;
fd
=
open
(
path
,
open_mode
,
066
6
);
fd
=
open
(
path
,
open_mode
,
066
0
);
if
(
fd
<
0
)
return
NULL
;
...
...
src/lxc/start.c
View file @
e15b2302
...
...
@@ -1798,7 +1798,7 @@ static int lxc_spawn(struct lxc_handler *handler)
ret
=
lxc_netns_set_nsid
(
handler
->
nsfd
[
LXC_NS_NET
]);
if
(
ret
<
0
)
SYS
ERROR
(
"Failed to allocate new network namespace id"
);
SYS
WARN
(
"Failed to allocate new network namespace id"
);
else
TRACE
(
"Allocated new network namespace id"
);
}
...
...
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