diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-22 22:34:15 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-22 22:34:15 +0000 |
commit | 3fd63a93c433acc9cbbd4a6db901c4a6382af6e4 (patch) | |
tree | 2c8afb8f1f07fb76eec73f823ad9f716ec6085d1 | |
parent | 93ffe8515c1cb4cf2cd3e068c9a7e60e9ae5fb24 (diff) | |
download | drakx-3fd63a93c433acc9cbbd4a6db901c4a6382af6e4.tar drakx-3fd63a93c433acc9cbbd4a6db901c4a6382af6e4.tar.gz drakx-3fd63a93c433acc9cbbd4a6db901c4a6382af6e4.tar.bz2 drakx-3fd63a93c433acc9cbbd4a6db901c4a6382af6e4.tar.xz drakx-3fd63a93c433acc9cbbd4a6db901c4a6382af6e4.zip |
add automatic support in choice of NET device, in case of multiple NET devices
-rw-r--r-- | mdk-stage1/network.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index 543a23b01..b4c16eec6 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -504,7 +504,7 @@ static char * interface_select(void) if (count == 1) return *interfaces; - results = ask_from_list("Please choose the NET device to use for the installation.", interfaces, &choice); + results = ask_from_list_auto("Please choose the NET device to use for the installation.", interfaces, &choice, "interface", interfaces); if (results != RETURN_OK) return NULL; |