Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
Fix graphs directory being created with strange permissions (FWGS#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeSlave committed Nov 18, 2021
1 parent 6802cda commit 0c46e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/nodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ LINK_ENTITY_TO_CLASS( info_node_air, CNodeEnt )
#elif !_WIN32
#include <unistd.h>
#include <sys/stat.h>
#define CreateDirectoryA(p, n) mkdir(p,777)
#define CreateDirectoryA(p, n) mkdir(p, 0777)
#endif

//=========================================================
Expand Down

0 comments on commit 0c46e1b

Please sign in to comment.