diff options
author | Drew DeVault <[email protected]> | 2017-06-06 09:34:01 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2017-06-06 09:34:01 -0400 |
commit | fd47a30e75cccfc3789eafa4bfabd66f4696099b (patch) | |
tree | 10c1529eb56235b303bdbca905e8b80dce47ae6d /sway/config.c | |
parent | 5ed533a94331ea2d849f900ee20f8932d742e9b5 (diff) | |
parent | 7fef2830446e1f98a02f8d8a3bba866b7edd5bd0 (diff) |
Merge pull request #1232 from johalun/master-freebsd
FreeBSD fixes
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index 19b1882f..85823953 100644 --- a/sway/config.c +++ b/sway/config.c @@ -1,5 +1,5 @@ #define _POSIX_C_SOURCE 200809L -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 700 #include <stdio.h> #include <stdbool.h> #include <stdlib.h> @@ -527,7 +527,7 @@ bool load_main_config(const char *file, bool is_active) { list_add(config->config_chain, path); config->reading = true; - + // Read security configs bool success = true; DIR *dir = opendir(SYSCONFDIR "/sway/security.d"); |