1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- modprobe.c~ 2005-12-02 00:42:09.000000000 +0100
+++ modprobe.c 2008-03-12 09:39:14.000000000 +0100
@@ -1236,9 +1236,8 @@
/* Try defaults. */
for (i = 0; i < ARRAY_SIZE(default_configs); i++) {
- if (read_config(default_configs[i], name, dump_only, removing,
- options, commands, aliases, blacklist))
- return;
+ read_config(default_configs[i], name, dump_only, removing,
+ options, commands, aliases, blacklist);
}
}
|