Skip to content

Commit

Permalink
Merge pull request #131 from Chia-Network/version-1.2.2
Browse files Browse the repository at this point in the history
Version 1.2.2
  • Loading branch information
haorldbchi authored Oct 21, 2021
2 parents 9abf442 + d05b6be commit 19f9fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.1
1.2.2
2 changes: 1 addition & 1 deletion src/platform/unix/FileStream_Unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bool FileStream::Open( const char* path, FileStream& file, FileMode mode, FileAc
#endif

if( mode == FileMode::Create )
fmode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
fmode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;

int fd = open( path, fdFlags, fmode );
if( fd < 0 )
Expand Down

0 comments on commit 19f9fbf

Please sign in to comment.