Skip to content

Commit

Permalink
Merge pull request #104 from nwf-msr/202206-small-fixes
Browse files Browse the repository at this point in the history
Two small patches
  • Loading branch information
fangfufu authored Aug 11, 2022
2 parents d1a10d4 + 72d15ab commit 61d3ae4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/fuse_local.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ static int fs_open(const char *path, struct fuse_file_info *fi)
if (!link) {
return -ENOENT;
}
if ((fi->flags & 3) != O_RDONLY) {
return -EACCES;
if ((fi->flags & O_RDWR) != O_RDONLY) {
return -EROFS;
}
if (CACHE_SYSTEM_INIT) {
fi->fh = (uint64_t) Cache_open(path);
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ void parse_config_file(char ***argv, int *argc)
static int
parse_arg_list(int argc, char **argv, char ***fuse_argv, int *fuse_argc)
{
char c;
int c;
int long_index = 0;
const char *short_opts = "o:hVdfsp:u:P:";
const struct option long_opts[] = {
Expand Down

0 comments on commit 61d3ae4

Please sign in to comment.