[BusyBox-cvs] CVS update of busybox/modutils (insmod.c)

Erik Andersen andersen at codepoet.org
Tue Jun 22 20:10:53 UTC 2004


    Date: Tuesday, June 22, 2004 @ 14:10:53
  Author: andersen
    Path: /var/cvs/busybox/modutils

Modified: insmod.c (1.120 -> 1.121)

fix a stupid compile error when CONFIG_FEATURE_INSMOD_VERSION_CHECKING
is disabled


Index: busybox/modutils/insmod.c
diff -u busybox/modutils/insmod.c:1.120 busybox/modutils/insmod.c:1.121
--- busybox/modutils/insmod.c:1.120	Tue Jun 22 05:50:52 2004
+++ busybox/modutils/insmod.c	Tue Jun 22 14:10:53 2004
@@ -3607,6 +3607,7 @@
 {
 	int opt;
 	int len;
+	int k_crcs;
 	char *tmp, *tmp1;
 	unsigned long m_size;
 	ElfW(Addr) m_addr;
@@ -3618,8 +3619,7 @@
 #ifdef CONFIG_FEATURE_INSMOD_VERSION_CHECKING
 	struct utsname uts_info;
 	char m_strversion[STRVERSIONLEN];
-	int m_version;
-	int k_crcs, m_crcs;
+	int m_version, m_crcs;
 #endif
 #ifdef CONFIG_FEATURE_CLEAN_UP
 	FILE *fp = 0;



More information about the busybox-cvs mailing list