diff options
author | default <nobody@localhost> | 2023-07-09 20:23:38 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-07-09 20:23:38 +0200 |
commit | d2aa5727baf8b17f99d0ffc041b225463bd2684d (patch) | |
tree | 2c2a48478f7b1ae5c66ea6d46bb4c6d9254ca7d7 /snac.h | |
parent | c562a4531c438b4848f569d2c3901708b7bbce43 (diff) |
Fixed failed mkdir() in restricted environments.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,8 @@ #define WHAT_IS_SNAC_URL "https:/" "/comam.es/what-is-snac" -#define DIR_PERM 02770 +#define DIR_PERM 00770 +#define DIR_PERM_ADD 02770 #define ISO_DATE_SPEC "%Y-%m-%dT%H:%M:%SZ" |