aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mdev.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-16 23:04:49 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-16 23:04:49 +0000
commitfb1642f2caa3690cb40f603fca22eeace09a0bfa (patch)
tree0ae2f20765b93696322e8c6c5e928b0b1be2cbee /util-linux/mdev.c
parentc01340fe26b76e172805ff641ad9af6bc45cdc91 (diff)
downloadbusybox-fb1642f2caa3690cb40f603fca22eeace09a0bfa.tar.gz
fix up callsites of config_read to check for >= 0
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r--util-linux/mdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index 8968e45f8..c04410c0c 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -101,7 +101,7 @@ static void make_device(char *path, int delete)
if (!config_open(&parser, "/etc/mdev.conf"))
goto end_parse;
- while (config_read(&parser, tokens, 4, 3, " \t", '#')) {
+ while (config_read(&parser, tokens, 4, 3, " \t", '#') >= 0) {
regmatch_t off[1+9*ENABLE_FEATURE_MDEV_RENAME_REGEXP];
char *val;