| 94 | } |
| 95 | |
| 96 | bool checkAccess(CheckStatusWrapper* status, const PathName& path, const string& key) |
| 97 | { |
| 98 | if (path.hasData() && !PathUtils::canAccess(path, 6)) |
| 99 | { |
| 100 | configError(status, "missing or inaccessible directory", key, path.c_str()); |
| 101 | return false; |
| 102 | } |
| 103 | return true; |
| 104 | } |
| 105 | |
| 106 | void composeError(CheckStatusWrapper* status, const Exception& ex) |
| 107 | { |
no test coverage detected