| 146 | return underlayfs->link(oldname, newname); |
| 147 | } |
| 148 | virtual int rename(const char *oldname, const char *newname) override |
| 149 | { |
| 150 | PathCat __(this, oldname); |
| 151 | PathCat ___(this, newname); |
| 152 | return underlayfs->rename(oldname, newname); |
| 153 | } |
| 154 | virtual int unlink(const char *path) override |
| 155 | { |
| 156 | PathCat __(this, path); |
no outgoing calls
no test coverage detected