diff options
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe-small.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index 1654cc52d..63be9aadb 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c @@ -491,7 +491,7 @@ static int already_loaded(const char *name) int ret = 0; char *s; parser_t *parser = config_open2("/proc/modules", xfopen_for_read); - while (config_read(parser, &s, 1, 1, "# \t", 0)) { + while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) { if (strcmp(s, name) == 0) { ret = 1; break; |