Change default permissions from 0777 to 0660 - smdev - suckless mdev | |
git clone git://git.suckless.org/smdev | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 18552e102e3d739d8c03379716b8acbc9ddbc8f7 | |
parent 13d80055a7d58231c3ad43be51b383fa222d2f3c | |
Author: sin <[email protected]> | |
Date: Wed, 21 Aug 2013 18:11:15 +0100 | |
Change default permissions from 0777 to 0660 | |
Diffstat: | |
M config.h | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.h b/config.h | |
@@ -22,5 +22,5 @@ struct Rule { | |
{ "vcsa*[0-9]*","root", "tty", 0660, NULL, NULL }, | |
{ "sd[a-z].*", "root", "disk", 0660, NULL, NULL }, | |
{ "sr[0-9]*", "root", "cdrom", 0660, NULL, "@ln -sf $SMDEV cdrom" }, | |
- { ".*", "root", "root", 0777, NULL, NULL }, | |
+ { ".*", "root", "root", 0660, NULL, NULL }, | |
}; |