diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-12-20 03:04:11 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:19:09 -0700 |
commit | 4ae6d03f394684722e7d5710fb2585e7c388f119 (patch) | |
tree | b462a52a6f7acd159e3fa8f52193adf53cded0d9 /udev_config.c | |
parent | 65ab1334122b6ed427ce39f48fb40757d44f8d71 (diff) |
[PATCH] simplify rules file by setting default mode to 0660
On Sun, 2004-12-19 at 18:31 +0100, Marco d'Itri wrote:
> It may be better to use default_mode="0660", I do not think that there
> are any mode 600 devices. This would allow setting only the group for
> most of them.
Diffstat (limited to 'udev_config.c')
-rw-r--r-- | udev_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_config.c b/udev_config.c index a5f6467748..31c2a86ed1 100644 --- a/udev_config.c +++ b/udev_config.c @@ -76,7 +76,7 @@ static void init_variables(void) strcpy(default_owner, "root"); strcpy(default_group, "root"); - default_mode = 0600; + default_mode = 0660; udev_log = string_is_true(UDEV_LOG_DEFAULT); |