mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-13 16:43:26 +08:00
Update fileutils.c
Linux file permission fix
This commit is contained in:
parent
e2c56fe26c
commit
5060a52b3a
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ static bool is_directory(const char *filename) {
|
|||
#ifdef _WIN32
|
||||
#define make_dir(a) _mkdir(a)
|
||||
#else
|
||||
#define make_dir(a) mkdir(a,0x755)
|
||||
#define make_dir(a) mkdir(a,0755)
|
||||
#endif
|
||||
bool create_path(const char *dirname) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue