diff options
author | Denis Vlasenko | 2007-12-21 22:18:16 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-12-21 22:18:16 +0000 |
commit | ee87ebf3815d37cbdcaf766a06ed40d4ca0dfe81 (patch) | |
tree | e65c2e36f20bd2a1134fc12269b5167cbf5c6782 /shell/ash.c | |
parent | 26b6fba9d33bb4ce117db4ad22a94f05d04ff8be (diff) | |
download | busybox-ee87ebf3815d37cbdcaf766a06ed40d4ca0dfe81.zip busybox-ee87ebf3815d37cbdcaf766a06ed40d4ca0dfe81.tar.gz |
fix buglets found by randomconfig
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index f7604cf..a5b19c8 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -12900,7 +12900,9 @@ int ash_main(int argc, char **argv) INIT_G_misc(); INIT_G_memstack(); INIT_G_var(); +#if ENABLE_ASH_ALIAS INIT_G_alias(); +#endif INIT_G_cmdtable(); #if PROFILE |