diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-05-27 06:19:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-05-27 06:19:16 +0000 |
commit | 9578d878e8f6ec4d7c9616e3e0ad60ac35f0fdb6 (patch) | |
tree | 97e951b0b6e691b710b78cc54e57e1f49d05075a | |
parent | f64d38807c8a00280ae92294516eb2313b0e0162 (diff) | |
download | upstream-9578d878e8f6ec4d7c9616e3e0ad60ac35f0fdb6.tar.gz upstream-9578d878e8f6ec4d7c9616e3e0ad60ac35f0fdb6.tar.bz2 upstream-9578d878e8f6ec4d7c9616e3e0ad60ac35f0fdb6.zip |
fix menuconfig on fedora x86_64
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1083 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/config/mconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/config/mconf.c b/package/config/mconf.c index 22ba1f302f..00580bd666 100644 --- a/package/config/mconf.c +++ b/package/config/mconf.c @@ -101,7 +101,7 @@ static char filename[PATH_MAX+1] = ".config"; static int indent = 0; static struct termios ios_org; static int rows, cols; -static struct menu *current_menu; +struct menu *current_menu; static int child_count; static int single_menu_mode; |