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
00f848f3
Unverified
Commit
00f848f3
authored
Aug 25, 2020
by
Christian Brauner
Committed by
GitHub
Aug 25, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3529 from pranaysrivastava/fixup_rootfs_detection
Check only rootfs as filesystem type
parents
c22a1a4a
97edebfa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
utils.c
src/lxc/utils.c
+1
-1
No files found.
src/lxc/utils.c
View file @
00f848f3
...
@@ -704,7 +704,7 @@ bool detect_ramfs_rootfs(void)
...
@@ -704,7 +704,7 @@ bool detect_ramfs_rootfs(void)
if
(
strcmp
(
p
+
1
,
"/"
)
==
0
)
{
if
(
strcmp
(
p
+
1
,
"/"
)
==
0
)
{
/* This is '/'. Is it the ramfs? */
/* This is '/'. Is it the ramfs? */
p
=
strchr
(
p2
+
1
,
'-'
);
p
=
strchr
(
p2
+
1
,
'-'
);
if
(
p
&&
strncmp
(
p
,
"- rootfs
rootfs "
,
16
)
==
0
)
if
(
p
&&
strncmp
(
p
,
"- rootfs
"
,
9
)
==
0
)
return
true
;
return
true
;
}
}
}
}
...
...
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