projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e707806
)
Fixed a bug that I had introduced with the new "options" handling.
author
Robert Griebl
<griebl@gmx.de>
Mon, 29 Jul 2002 20:28:38 +0000
(20:28 -0000)
committer
Robert Griebl
<griebl@gmx.de>
Mon, 29 Jul 2002 20:28:38 +0000
(20:28 -0000)
modutils/modprobe.c
patch
|
blob
|
history
diff --git
a/modutils/modprobe.c
b/modutils/modprobe.c
index 36d2aa211d8a7b9cab320cfe8e39fb7053be6469..1f4aebbd7c8042fee30a900862da6c815e4ca1be 100644
(file)
--- a/
modutils/modprobe.c
+++ b/
modutils/modprobe.c
@@
-349,16
+349,17
@@
static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t *
struct dep_t *adt;
for ( adt = depend; adt; adt = adt-> m_next ) {
- if ( strcmp ( adt-> m_module, dt-> m_deparr [0] ) == 0 ) {
- if ( !opt )
- opt = adt-> m_options;
+ if ( strcmp ( adt-> m_module, dt-> m_deparr [0] ) == 0 )
break;
- }
}
- if ( !adt )
- return;
+ if ( adt ) {
+ dt = adt;
+ mod = dt-> m_module;
+ if ( !opt )
+ opt = dt-> m_options;
+ }
else
-
dt = adt
;
+
return
;
}
else
return;