diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-17 14:54:40 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-17 14:54:40 +0000 |
commit | e97cd5c2f46b7684a045a7e0717eb09d7596c693 (patch) | |
tree | eb5d39f24c3fb658c0607be66b86109ab603c7fc | |
parent | fc487565bba22680886ea1ff0e7239eaea8cacff (diff) | |
download | drakx-e97cd5c2f46b7684a045a7e0717eb09d7596c693.tar drakx-e97cd5c2f46b7684a045a7e0717eb09d7596c693.tar.gz drakx-e97cd5c2f46b7684a045a7e0717eb09d7596c693.tar.bz2 drakx-e97cd5c2f46b7684a045a7e0717eb09d7596c693.tar.xz drakx-e97cd5c2f46b7684a045a7e0717eb09d7596c693.zip |
sort lan protocols
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index b24b1b86d..50ef8d463 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -786,7 +786,7 @@ Modifying the fields below will override this configuration."), N("The following protocols can be used to configure an ethernet connection. Please choose the one you want to use") }, data => sub { - [ { val => \$auto_ip, type => "list", list => [ values %l10n_lan_protocols ] } ]; + [ { val => \$auto_ip, type => "list", list => [ sort values %l10n_lan_protocols ] } ]; }, post => sub { $auto_ip = $auto_ip ne $l10n_lan_protocols{static} || 0; |