mount: don't complain about ability to create mount dirs

This commit is contained in:
Robert Swiecki 2017-10-25 01:45:39 +02:00
parent 6dc0808914
commit 3b3ec6c623

View File

@ -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) {