diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-13 23:52:32 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-13 23:52:32 +0000 |
commit | a883fa4ceeab3ae5370359fd3048ba95474a17cd (patch) | |
tree | 271f08536ca807b7c84aac0d78c0d50aaf141887 | |
parent | 9729e65706f46bd04d6e5946e20bd3c7ff4d7cc3 (diff) | |
download | busybox-a883fa4ceeab3ae5370359fd3048ba95474a17cd.tar.gz |
exterminate last bzero's
version bump to 1.3.0
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | scripts/kconfig/gconf.c | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -1,7 +1,7 @@ VERSION = 1 -PATCHLEVEL = 2 -SUBLEVEL = 2 -EXTRAVERSION = .svn +PATCHLEVEL = 3 +SUBLEVEL = 0 +EXTRAVERSION = NAME = Unnamed # *DOCUMENTATION* 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), |