Skip to content

Commit

Permalink
Issue #21 - added lseek (as basically a no-op)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsgeek committed Jun 18, 2020
1 parent 88bbac9 commit ee9316c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions finesse/bitbucket/lseek.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
void bitbucket_lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence, struct fuse_file_info *fi)
{

(void) req;
(void) ino;
(void) off;
(void) whence;
(void) fi;

assert(0); // Not implemented
// This is a no-op for us
fuse_reply_lseek(req, off);

}

0 comments on commit ee9316c

Please sign in to comment.