diff options
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index cbe00c2b4..7391b4fb2 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -78,7 +78,7 @@ | |||
78 | #ifndef MODUTILS_MODULE_H | 78 | #ifndef MODUTILS_MODULE_H |
79 | #define MODUTILS_MODULE_H 1 | 79 | #define MODUTILS_MODULE_H 1 |
80 | 80 | ||
81 | #ident "$Id: insmod.c,v 1.33 2000/12/18 03:57:16 kraai Exp $" | 81 | #ident "$Id: insmod.c,v 1.34 2000/12/22 01:48:07 kraai Exp $" |
82 | 82 | ||
83 | /* This file contains the structures used by the 2.0 and 2.1 kernels. | 83 | /* This file contains the structures used by the 2.0 and 2.1 kernels. |
84 | We do not use the kernel headers directly because we do not wish | 84 | We do not use the kernel headers directly because we do not wish |
@@ -284,7 +284,7 @@ int delete_module(const char *); | |||
284 | #ifndef MODUTILS_OBJ_H | 284 | #ifndef MODUTILS_OBJ_H |
285 | #define MODUTILS_OBJ_H 1 | 285 | #define MODUTILS_OBJ_H 1 |
286 | 286 | ||
287 | #ident "$Id: insmod.c,v 1.33 2000/12/18 03:57:16 kraai Exp $" | 287 | #ident "$Id: insmod.c,v 1.34 2000/12/22 01:48:07 kraai Exp $" |
288 | 288 | ||
289 | /* The relocatable object is manipulated using elfin types. */ | 289 | /* The relocatable object is manipulated using elfin types. */ |
290 | 290 | ||
@@ -2952,10 +2952,8 @@ extern int insmod_main( int argc, char **argv) | |||
2952 | memcpy(m_filename, *argv, strlen(*argv)); | 2952 | memcpy(m_filename, *argv, strlen(*argv)); |
2953 | 2953 | ||
2954 | 2954 | ||
2955 | if ((f = obj_load(fp)) == NULL) { | 2955 | if ((f = obj_load(fp)) == NULL) |
2956 | perror("Could not load the module\n"); | 2956 | perror_msg_and_die("Could not load the module"); |
2957 | return EXIT_FAILURE; | ||
2958 | } | ||
2959 | 2957 | ||
2960 | if (get_modinfo_value(f, "kernel_version") == NULL) | 2958 | if (get_modinfo_value(f, "kernel_version") == NULL) |
2961 | m_has_modinfo = 0; | 2959 | m_has_modinfo = 0; |