From: Eric Andersen Date: Tue, 22 May 2001 19:23:35 +0000 (-0000) Subject: Oops. Remove some debug noise I left in. X-Git-Tag: 0_52~144 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=816867858b90485df6c304673cbd01d9664007b4;p=oweals%2Fbusybox.git Oops. Remove some debug noise I left in. --- diff --git a/hush.c b/hush.c index 2b100983e..46f1a77bd 100644 --- a/hush.c +++ b/hush.c @@ -2473,7 +2473,7 @@ void update_ifs_map(void) * The map[] array only really needs two bits each, and on most machines * that would be faster because of the reduced L1 cache footprint. */ - memset(map,0,256); /* most characters flow through always */ + memset(map,0,sizeof(map)); /* most characters flow through always */ mapset("\\$'\"`", 3); /* never flow through */ mapset("<>;&|(){}#", 1); /* flow through if quoted */ mapset(ifs, 2); /* also flow through if quoted */ @@ -2541,10 +2541,6 @@ int shell_main(int argc, char **argv) struct jobset joblist_end = { NULL, NULL }; char **e = environ; - /* FIXME */ - fprintf(stderr, "sizeof(map)=%d\n", sizeof(map)); - - /* XXX what should these be while sourcing /etc/profile? */ global_argc = argc; global_argv = argv; diff --git a/shell/hush.c b/shell/hush.c index 2b100983e..46f1a77bd 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -2473,7 +2473,7 @@ void update_ifs_map(void) * The map[] array only really needs two bits each, and on most machines * that would be faster because of the reduced L1 cache footprint. */ - memset(map,0,256); /* most characters flow through always */ + memset(map,0,sizeof(map)); /* most characters flow through always */ mapset("\\$'\"`", 3); /* never flow through */ mapset("<>;&|(){}#", 1); /* flow through if quoted */ mapset(ifs, 2); /* also flow through if quoted */ @@ -2541,10 +2541,6 @@ int shell_main(int argc, char **argv) struct jobset joblist_end = { NULL, NULL }; char **e = environ; - /* FIXME */ - fprintf(stderr, "sizeof(map)=%d\n", sizeof(map)); - - /* XXX what should these be while sourcing /etc/profile? */ global_argc = argc; global_argv = argv;