diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-14 08:06:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-14 08:06:59 +0000 |
commit | 7f9593753a194c3d3db79f803f68d2ebaf98cd12 (patch) | |
tree | 53248c85f42e075a371bb71b9e066f398e6baa50 /util-linux | |
parent | b024f8da8fad7ffd9bc5e63ed947bf6bd35fac3e (diff) | |
download | busybox-7f9593753a194c3d3db79f803f68d2ebaf98cd12.tar.gz |
randomconfig fixes
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mdev.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index b1f3d051c..0f7e082ba 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -98,10 +98,11 @@ static void make_device(char *path, int delete) if (strstr(path, "/block/")) type = S_IFBLK; -#if ENABLE_FEATURE_MDEV_CONF - parser = config_open2("/etc/mdev.conf", fopen_for_read); - +#if !ENABLE_FEATURE_MDEV_CONF + mode = 0660; +#else /* If we have config file, look up user settings */ + parser = config_open2("/etc/mdev.conf", fopen_for_read); while (1) { regmatch_t off[1 + 9*ENABLE_FEATURE_MDEV_RENAME_REGEXP]; int keep_matching; |