1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-11-04 23:37:10 +02:00

Make FileLister::browse not log a non-existing directory as an error

To avoid unnecessary existence checks, we consider browsing a
non-existing directory to be a normal situation.
This commit is contained in:
Maarten ter Huurne 2014-08-13 22:56:47 +02:00
parent f85ef14b3e
commit 35724170f8

View File

@ -85,7 +85,9 @@ void FileLister::browse(const string& path, bool clean)
DIR *dirp;
if ((dirp = opendir(slashedPath.c_str())) == NULL) {
ERROR("Unable to open directory: %s\n", slashedPath.c_str());
if (errno != ENOENT) {
ERROR("Unable to open directory: %s\n", slashedPath.c_str());
}
return;
}