| 172 | return underlayfs->lchown(path, owner, group); |
| 173 | } |
| 174 | virtual DIR* opendir(const char *path) override |
| 175 | { |
| 176 | PathCat __(this, path); |
| 177 | return underlayfs->opendir(path); |
| 178 | } |
| 179 | virtual int stat(const char *path, struct stat *buf) override |
| 180 | { |
| 181 | PathCat __(this, path); |
no outgoing calls
no test coverage detected