| 157 | return underlayfs->unlink(path); |
| 158 | } |
| 159 | virtual int chmod(const char *path, mode_t mode) override |
| 160 | { |
| 161 | PathCat __(this, path); |
| 162 | return underlayfs->chmod(path, mode); |
| 163 | } |
| 164 | virtual int chown(const char *path, uid_t owner, gid_t group) override |
| 165 | { |
| 166 | PathCat __(this, path); |
no outgoing calls