diff --git a/fuse/Fuse.cpp b/fuse/Fuse.cpp index 7293f527..c32915ce 100644 --- a/fuse/Fuse.cpp +++ b/fuse/Fuse.cpp @@ -285,22 +285,19 @@ int Fuse::mkdir(const bf::path &path, mode_t mode) { std::cerr << "AssertFailed in Fuse::mkdir: " << e.what() << std::endl; return -EIO; } catch(fspp::fuse::FuseErrnoException &e) { - std::cerr << "FuseError in Fuse::mkdir: "<unlink(path); - printf("unlink done\n"); return 0; } catch(const cpputils::AssertFailed &e) { std::cerr << "AssertFailed in Fuse::unlink: " << e.what() << std::endl; return -EIO; } catch(fspp::fuse::FuseErrnoException &e) { - std::cerr << "FuseError in Fuse::unlink: " << e.what() << std::endl; return -e.getErrno(); } }