diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-07 16:34:42 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-07 16:34:42 +0000 |
commit | 9c0de64bd6208e8c824a711dfc110a03667c3f1d (patch) | |
tree | 1d334b6a2a9ad0928d82beeb222d366fc632ae13 /package | |
parent | f62d1d10a4d4a709d5c5111e6ef940070e91c7b1 (diff) |
add menuconfig fix from uclibc buildroot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@341 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/config/mconf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/config/mconf.c b/package/config/mconf.c index 0db6f8f6c8..22ba1f302f 100644 --- a/package/config/mconf.c +++ b/package/config/mconf.c @@ -308,6 +308,12 @@ static void build_conf(struct menu *menu) return; } } else { + if (menu == current_menu) { + cprint_tag(":%p", menu); + cprint_name("---%*c%s", indent + 1, ' ', menu_get_prompt(menu)); + goto conf_childs; + } + child_count++; val = sym_get_tristate_value(sym); if (sym_is_choice_value(sym) && val == yes) { |