| 140 | return underlayfs->readlink(path, buf, bufsiz); |
| 141 | } |
| 142 | virtual int link(const char *oldname, const char *newname) override |
| 143 | { |
| 144 | PathCat __(this, oldname); |
| 145 | PathCat ___(this, newname); |
| 146 | return underlayfs->link(oldname, newname); |
| 147 | } |
| 148 | virtual int rename(const char *oldname, const char *newname) override |
| 149 | { |
| 150 | PathCat __(this, oldname); |
no outgoing calls