From 135cee3741c3447730c2655604b1b947fc5fce07 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 21 Jun 2006 23:03:37 +0000 Subject: [PATCH] Jean Wolter writes: modprobe checks, whether a module is already loaded. The function used for this currently always returns 0. --- modutils/modprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 14da0a729..6211c7d81 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -609,7 +609,7 @@ static int already_loaded (const char *name) } done: close (fd); - return 0; + return ret; } static int mod_process ( struct mod_list_t *list, int do_insert )