diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-10 20:21:11 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-10 20:21:11 -0800 |
commit | 1038651116e95095563207dd20228371b8a88ba3 (patch) | |
tree | 518d8e5cc4dff6ec9d34c5f03eeb96ad6ce8ca7a | |
parent | db7746ea3c02506ca70189f9c4ab39cf895f138f (diff) | |
download | vyatta-op-qos-1038651116e95095563207dd20228371b8a88ba3.tar.gz vyatta-op-qos-1038651116e95095563207dd20228371b8a88ba3.zip |
Sort interface names
Sort interface names for show queueing.
Bugfix 3885
-rwxr-xr-x | scripts/vyatta-show-queueing.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-show-queueing.pl b/scripts/vyatta-show-queueing.pl index 1827ead..6aaee57 100755 --- a/scripts/vyatta-show-queueing.pl +++ b/scripts/vyatta-show-queueing.pl @@ -248,7 +248,7 @@ if ( $#ARGV == -1 ) { close $ip; } -foreach my $interface (@ARGV) { +foreach my $interface (sort @ARGV) { show($interface); } |