diff options
author | Stew Benedict <stewb@mandriva.org> | 2005-04-07 13:21:31 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2005-04-07 13:21:31 +0000 |
commit | b1e63fadd00a77146e8c8e1cde1c608c9ee47faf (patch) | |
tree | dc821c362aa6aa4d031f746ce291586677c5c14d | |
parent | 11a62e0319fcf4effe88a41ac7816d104f9ed3f7 (diff) | |
download | drakx-backup-do-not-use-b1e63fadd00a77146e8c8e1cde1c608c9ee47faf.tar drakx-backup-do-not-use-b1e63fadd00a77146e8c8e1cde1c608c9ee47faf.tar.gz drakx-backup-do-not-use-b1e63fadd00a77146e8c8e1cde1c608c9ee47faf.tar.bz2 drakx-backup-do-not-use-b1e63fadd00a77146e8c8e1cde1c608c9ee47faf.tar.xz drakx-backup-do-not-use-b1e63fadd00a77146e8c8e1cde1c608c9ee47faf.zip |
Sort the nic list for nbis.
-rwxr-xr-x | perl-install/standalone/drakTermServ | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakTermServ b/perl-install/standalone/drakTermServ index 4943f4714..f344d5dbe 100755 --- a/perl-install/standalone/drakTermServ +++ b/perl-install/standalone/drakTermServ @@ -660,7 +660,7 @@ sub make_nbi() { my $nic; require list_modules; - my @nics = list_modules::category2modules(list_modules::ethernet_categories()); + my @nics = sort(list_modules::category2modules(list_modules::ethernet_categories())); #- kernel/module info in tree view my $model = Gtk2::TreeStore->new("Glib::String"); |