From 8c185f9600dce42234a407992323af3cc4c8f989 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 22 Sep 2000 00:38:07 +0000 Subject: Fix for bug #1042 -- applied the patch from Larry Doolittle to fix the bug. -Erik --- modutils/insmod.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modutils') diff --git a/modutils/insmod.c b/modutils/insmod.c index 4e159be5d..b0e797af7 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -70,7 +70,7 @@ #ifndef MODUTILS_MODULE_H #define MODUTILS_MODULE_H 1 -#ident "$Id: insmod.c,v 1.22 2000/08/22 05:18:30 andersen Exp $" +#ident "$Id: insmod.c,v 1.23 2000/09/22 00:38:07 andersen Exp $" /* This file contains the structures used by the 2.0 and 2.1 kernels. We do not use the kernel headers directly because we do not wish @@ -276,7 +276,7 @@ int delete_module(const char *); #ifndef MODUTILS_OBJ_H #define MODUTILS_OBJ_H 1 -#ident "$Id: insmod.c,v 1.22 2000/08/22 05:18:30 andersen Exp $" +#ident "$Id: insmod.c,v 1.23 2000/09/22 00:38:07 andersen Exp $" /* The relocatable object is manipulated using elfin types. */ @@ -1309,7 +1309,7 @@ old_get_module_version(struct obj_file *f, char str[STRVERSIONLEN]) /* Fetch all the symbols and divvy them up as appropriate for the modules. */ -static int old_get_kernel_symbols(void) +static int old_get_kernel_symbols(const char *m_name) { struct old_kernel_sym *ks, *k; struct new_module_symbol *s; @@ -2758,7 +2758,7 @@ extern int insmod_main( int argc, char **argv) #endif } else { #ifdef BB_FEATURE_INSMOD_OLD_KERNEL - if (!old_get_kernel_symbols()) + if (!old_get_kernel_symbols(m_name)) goto out; k_crcs = old_is_kernel_checksummed(); #else -- cgit v1.2.3