Skip to content

Commit

Permalink
debug symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
iDmple committed Nov 7, 2023
1 parent 77ed912 commit eccddaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ static void hello_ll_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr,
attributes.setStBlksize(attr->st_blksize);
attributes.setStBlocks(attr->st_blocks);

// clang-format off
// clang-format off
#if defined(__APPLE__)
stAtime.setTvSec(attr->st_atimespec.tv_sec);
stAtime.setTvNSec(attr->st_atimespec.tv_nsec);
Expand Down Expand Up @@ -1341,7 +1341,7 @@ static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
#endif

static void hello_ll_readlink(fuse_req_t req, fuse_ino_t ino) {
// printf("Called .readlink\n");
printf("Called .readlink\n");

auto &waitScope = ioContext->waitScope;
auto request = client->readlinkRequest();
Expand All @@ -1364,7 +1364,7 @@ static void hello_ll_readlink(fuse_req_t req, fuse_ino_t ino) {
fuse_reply_readlink(req, link.c_str());
}

// std::cout << "readlink executed correctly: " << payload << std::endl;
std::cout << "readlink executed correctly: " << payload << std::endl;
}

// clang-format off
Expand Down

0 comments on commit eccddaf

Please sign in to comment.