[BusyBox-cvs] busybox/modutils insmod.c,1.110,1.111

Erik Andersen andersen at busybox.net
Mon Jan 5 23:49:40 UTC 2004


Update of /var/cvs/busybox/modutils
In directory nail:/tmp/cvs-serv533/modutils

Modified Files:
	insmod.c 
Log Message:
Fix broken #else


Index: insmod.c
===================================================================
RCS file: /var/cvs/busybox/modutils/insmod.c,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -d -r1.110 -r1.111
--- insmod.c	31 Dec 2003 23:20:10 -0000	1.110
+++ insmod.c	5 Jan 2004 23:49:37 -0000	1.111
@@ -4135,9 +4135,8 @@
 	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;




More information about the busybox-cvs mailing list