diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-07-28 10:06:33 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-07-28 10:06:33 +0000 |
commit | 817f1a3cdd01d553aa57491526ac4fc760150bfc (patch) | |
tree | 8420e27f2b29da585b1099b7c89c7cfa0779d0da /mdk-stage1 | |
parent | e292d64180546097aedf5a26bb0045d85a42947f (diff) | |
download | drakx-817f1a3cdd01d553aa57491526ac4fc760150bfc.tar drakx-817f1a3cdd01d553aa57491526ac4fc760150bfc.tar.gz drakx-817f1a3cdd01d553aa57491526ac4fc760150bfc.tar.bz2 drakx-817f1a3cdd01d553aa57491526ac4fc760150bfc.tar.xz drakx-817f1a3cdd01d553aa57491526ac4fc760150bfc.zip |
don't corrupt the choice variable
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/network.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index b7b2e05af..ef173f992 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -666,8 +666,7 @@ static char * interface_select(void) return *interfaces; /* this can't be done in ask_from_list_comments_auto because "auto" isn't in the interfaces list */ - choice = get_auto_value("interface"); - if (choice && streq(choice, "auto")) { + if (streq(get_auto_value("interface"), "auto")) { choice = auto_select_up_intf(); if (choice) return choice; |