aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
Diffstat (limited to 'modutils')
-rw-r--r--modutils/insmod.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index b367e84af..eda4e1a48 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -234,7 +234,7 @@
234#ifndef MODUTILS_MODULE_H 234#ifndef MODUTILS_MODULE_H
235static const int MODUTILS_MODULE_H = 1; 235static const int MODUTILS_MODULE_H = 1;
236 236
237#ident "$Id: insmod.c,v 1.91 2002/10/10 04:20:21 andersen Exp $" 237#ident "$Id: insmod.c,v 1.92 2002/11/28 11:27:27 aaronl Exp $"
238 238
239/* This file contains the structures used by the 2.0 and 2.1 kernels. 239/* This file contains the structures used by the 2.0 and 2.1 kernels.
240 We do not use the kernel headers directly because we do not wish 240 We do not use the kernel headers directly because we do not wish
@@ -455,7 +455,7 @@ int delete_module(const char *);
455#ifndef MODUTILS_OBJ_H 455#ifndef MODUTILS_OBJ_H
456static const int MODUTILS_OBJ_H = 1; 456static const int MODUTILS_OBJ_H = 1;
457 457
458#ident "$Id: insmod.c,v 1.91 2002/10/10 04:20:21 andersen Exp $" 458#ident "$Id: insmod.c,v 1.92 2002/11/28 11:27:27 aaronl Exp $"
459 459
460/* The relocatable object is manipulated using elfin types. */ 460/* The relocatable object is manipulated using elfin types. */
461 461
@@ -3589,8 +3589,7 @@ extern int insmod_main( int argc, char **argv)
3589 flag_export = 0; 3589 flag_export = 0;
3590 break; 3590 break;
3591 case 'o': /* name the output module */ 3591 case 'o': /* name the output module */
3592 if(m_name) /* Hmmm, duplicate "-o name". */ 3592 free(m_name);
3593 free(m_name);
3594 m_name = xstrdup(optarg); 3593 m_name = xstrdup(optarg);
3595 break; 3594 break;
3596 case 'L': /* Stub warning */ 3595 case 'L': /* Stub warning */