aboutsummaryrefslogtreecommitdiff
path: root/scripts/kconfig/gconf.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-13 23:52:32 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-13 23:52:32 +0000
commita883fa4ceeab3ae5370359fd3048ba95474a17cd (patch)
tree271f08536ca807b7c84aac0d78c0d50aaf141887 /scripts/kconfig/gconf.c
parent9729e65706f46bd04d6e5946e20bd3c7ff4d7cc3 (diff)
downloadbusybox-a883fa4ceeab3ae5370359fd3048ba95474a17cd.tar.gz
exterminate last bzero's
version bump to 1.3.0
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r--scripts/kconfig/gconf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c
index 5aabcec23..566e35e5c 100644
--- a/scripts/kconfig/gconf.c
+++ b/scripts/kconfig/gconf.c
@@ -84,7 +84,7 @@ const char *dbg_print_stype(int val)
{
static char buf[256];
- bzero(buf, 256);
+ memset(buf, 0, 256);
if (val == S_UNKNOWN)
strcpy(buf, "unknown");
@@ -112,7 +112,7 @@ const char *dbg_print_flags(int val)
{
static char buf[256];
- bzero(buf, 256);
+ memset(buf, 0, 256);
if (val & SYMBOL_YES)
strcat(buf, "yes/");
@@ -155,7 +155,7 @@ const char *dbg_print_ptype(int val)
{
static char buf[256];
- bzero(buf, 256);
+ memset(buf, 0, 256);
if (val == P_UNKNOWN)
strcpy(buf, "unknown");
@@ -1188,7 +1188,7 @@ static gchar **fill_row(struct menu *menu)
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),