svn commit: trunk/busybox: scripts/kconfig

vda at busybox.net vda at busybox.net
Wed Dec 13 23:52:32 UTC 2006


Author: vda
Date: 2006-12-13 15:52:32 -0800 (Wed, 13 Dec 2006)
New Revision: 16912

Log:
exterminate last bzero's
version bump to 1.3.0


Modified:
   trunk/busybox/Makefile
   trunk/busybox/scripts/kconfig/gconf.c


Changeset:
Modified: trunk/busybox/Makefile
===================================================================
--- trunk/busybox/Makefile	2006-12-13 23:25:52 UTC (rev 16911)
+++ trunk/busybox/Makefile	2006-12-13 23:52:32 UTC (rev 16912)
@@ -1,7 +1,7 @@
 VERSION = 1
-PATCHLEVEL = 2
-SUBLEVEL = 2
-EXTRAVERSION = .svn
+PATCHLEVEL = 3
+SUBLEVEL = 0
+EXTRAVERSION =
 NAME = Unnamed
 
 # *DOCUMENTATION*

Modified: trunk/busybox/scripts/kconfig/gconf.c
===================================================================
--- trunk/busybox/scripts/kconfig/gconf.c	2006-12-13 23:25:52 UTC (rev 16911)
+++ trunk/busybox/scripts/kconfig/gconf.c	2006-12-13 23:52:32 UTC (rev 16912)
@@ -84,7 +84,7 @@
 {
 	static char buf[256];
 
-	bzero(buf, 256);
+	memset(buf, 0, 256);
 
 	if (val == S_UNKNOWN)
 		strcpy(buf, "unknown");
@@ -112,7 +112,7 @@
 {
 	static char buf[256];
 
-	bzero(buf, 256);
+	memset(buf, 0, 256);
 
 	if (val & SYMBOL_YES)
 		strcat(buf, "yes/");
@@ -155,7 +155,7 @@
 {
 	static char buf[256];
 
-	bzero(buf, 256);
+	memset(buf, 0, 256);
 
 	if (val == P_UNKNOWN)
 		strcpy(buf, "unknown");
@@ -1188,7 +1188,7 @@
 
 	for (i = COL_OPTION; i <= COL_COLOR; i++)
 		g_free(row[i]);
-	bzero(row, sizeof(row));
+	memset(row, 0, sizeof(row));
 
 	row[COL_OPTION] =
 	    g_strdup_printf("%s %s", menu_get_prompt(menu),




More information about the busybox-cvs mailing list