| 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); |
| 167 | return underlayfs->chown(path, owner, group); |
| 168 | } |
| 169 | virtual int lchown(const char *path, uid_t owner, gid_t group) override |
| 170 | { |
| 171 | PathCat __(this, path); |
no outgoing calls