From 4d91b544b6f666a12b84f82576b4309622806e83 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Fri, 30 Jun 2006 15:54:33 +0000 Subject: Fixed --menu when using gpm (#4916) --- netcfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'netcfg') diff --git a/netcfg b/netcfg index d070dc2..f58bfbf 100755 --- a/netcfg +++ b/netcfg @@ -222,18 +222,20 @@ menu() if [ "$TIMEOUT" != "" ]; then dialog \ + --output-fd 1 \ --timeout $TIMEOUT \ --default-item $DEFAULT \ --menu "Select the network profile you wish to use\n\n (timeout in $TIMEOUT seconds)" \ 13 50 6 \ - "${profiles[@]}" 2>$ANSWER + "${profiles[@]}" >$ANSWER ret=$? else dialog \ + --output-fd 1 \ --default-item $DEFAULT \ --menu "Select the network profile you wish to use" \ 13 50 6 \ - "${profiles[@]}" 2>$ANSWER + "${profiles[@]}" >$ANSWER ret=$? fi -- cgit v1.2.3