svn commit: trunk/busybox/modutils

vda at busybox.net vda at busybox.net
Tue Nov 6 02:02:45 UTC 2007


Author: vda
Date: 2007-11-05 18:02:45 -0800 (Mon, 05 Nov 2007)
New Revision: 20371

Log:
insmod: make error reporting less verbose



Modified:
   trunk/busybox/modutils/insmod.c


Changeset:
Modified: trunk/busybox/modutils/insmod.c
===================================================================
--- trunk/busybox/modutils/insmod.c	2007-11-06 01:38:46 UTC (rev 20370)
+++ trunk/busybox/modutils/insmod.c	2007-11-06 02:02:45 UTC (rev 20371)
@@ -4241,8 +4241,8 @@
 
 	ret = syscall(__NR_init_module, map, len, options);
 	if (ret != 0) {
-		bb_perror_msg_and_die("cannot insert '%s': %s (%li)",
-				filename, moderror(errno), ret);
+		bb_error_msg_and_die("cannot insert '%s': %s",
+				filename, moderror(errno));
 	}
 
 	return 0;




More information about the busybox-cvs mailing list