projects
/
platform
/
upstream
/
nsjail.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dc0808
)
mount: don't complain about ability to create mount dirs
author
Robert Swiecki
<robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000
(
01:45
+0200)
committer
Robert Swiecki
<robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000
(
01:45
+0200)
mount.c
patch
|
blob
|
history
diff --git
a/mount.c
b/mount.c
index
1269f75
..
eabfc8d
100644
(file)
--- a/
mount.c
+++ b/
mount.c
@@
-255,7
+255,7
@@
static bool mountRemountRO(struct mounts_t* mpt)
static bool mountMkdirAndTest(const char* dir)
{
if (mkdir(dir, 0755) == -1 && errno != EEXIST) {
- PLOG_
W
("Couldn't create '%s' directory", dir);
+ PLOG_
D
("Couldn't create '%s' directory", dir);
return false;
}
if (access(dir, R_OK) == -1) {