diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-05 23:49:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-05 23:49:37 +0000 |
commit | 66e21fd1616daefa903aeeb4d42e9ca50e4032ab (patch) | |
tree | 5e29c9cdb427d4114ba7f91d5c8470ce5fae8cf5 /modutils | |
parent | ab7780655b9e787cca783ebd13cf8f2ded0fe0e3 (diff) | |
download | busybox-66e21fd1616daefa903aeeb4d42e9ca50e4032ab.tar.gz |
Fix broken #else
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/insmod.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 1895622de..5960b591d 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -282,7 +282,7 @@ extern int insmod_ng_main( int argc, char **argv); #ifndef MODUTILS_MODULE_H static const int MODUTILS_MODULE_H = 1; -#ident "$Id: insmod.c,v 1.110 2003/12/31 23:20:10 bug1 Exp $" +#ident "$Id: insmod.c,v 1.111 2004/01/05 23:49:37 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 @@ -503,7 +503,7 @@ int delete_module(const char *); #ifndef MODUTILS_OBJ_H static const int MODUTILS_OBJ_H = 1; -#ident "$Id: insmod.c,v 1.110 2003/12/31 23:20:10 bug1 Exp $" +#ident "$Id: insmod.c,v 1.111 2004/01/05 23:49:37 andersen Exp $" /* The relocatable object is manipulated using elfin types. */ @@ -4135,9 +4135,8 @@ extern int insmod_main( int argc, char **argv) if (k_version > 4) bb_xasprintf(&m_fullName, "%s.ko", tmp); else -#else - bb_xasprintf(&m_fullName, "%s.o", tmp); #endif + bb_xasprintf(&m_fullName, "%s.o", tmp); if (!m_name) { m_name = tmp; |