diff options
Diffstat (limited to 'perl-install/network/netconnect.pm')
-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; |