aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Jaanus Torp <jaanus@saun.ee>2017-03-16 15:12:22 +0000
committerLibravatar Jaanus Torp <jaanus@saun.ee>2017-03-16 15:12:22 +0000
commit8306b886e9d24a5bbeafedf315724f97b3ae86d4 (patch)
treea00b20bface88b4ac872df001c4cc6946b657663 /sway/config.c
parentMerge pull request #1115 from snoack/missing-includes (diff)
downloadsway-8306b886e9d24a5bbeafedf315724f97b3ae86d4.tar.gz
sway-8306b886e9d24a5bbeafedf315724f97b3ae86d4.tar.zst
sway-8306b886e9d24a5bbeafedf315724f97b3ae86d4.zip
Allow also 444 for security file mode
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c
index f46ce882..46faf643 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -547,8 +547,8 @@ bool load_main_config(const char *file, bool is_active) {
547 list_qsort(secconfigs, qstrcmp); 547 list_qsort(secconfigs, qstrcmp);
548 for (int i = 0; i < secconfigs->length; ++i) { 548 for (int i = 0; i < secconfigs->length; ++i) {
549 char *_path = secconfigs->items[i]; 549 char *_path = secconfigs->items[i];
550 if (stat(_path, &s) || s.st_uid != 0 || s.st_gid != 0 || (s.st_mode & 0777) != 0644) { 550 if (stat(_path, &s) || s.st_uid != 0 || s.st_gid != 0 || (((s.st_mode & 0777) != 0644) && (s.st_mode & 0777) != 0444)) {
551 sway_log(L_ERROR, "Refusing to load %s - it must be owned by root and mode 644", _path); 551 sway_log(L_ERROR, "Refusing to load %s - it must be owned by root and mode 644 or 444", _path);
552 success = false; 552 success = false;
553 } else { 553 } else {
554 success = success && load_config(_path, config); 554 success = success && load_config(_path, config);