| 93 | } |
| 94 | |
| 95 | int scan_dir::rmdir_def(ACL_SCAN_DIR*, const char* path, void* ctx) |
| 96 | { |
| 97 | scan_dir* me = (scan_dir*) ctx; |
| 98 | return me->rmdir_callback(path) ? 0 : -1; |
| 99 | } |
| 100 | |
| 101 | bool scan_dir::rmdir_callback(const char* path) |
| 102 | { |
nothing calls this directly
no test coverage detected