mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
get them in the right order on flip flag
This commit is contained in:
parent
ab37251175
commit
8e7628a51d
2 changed files with 2 additions and 1 deletions
1
debian/changelog
vendored
1
debian/changelog
vendored
|
@ -2,6 +2,7 @@ byobu (5.5) unreleased; urgency=low
|
|||
|
||||
* usr/lib/byobu/ec2_cost, usr/lib/byobu/network:
|
||||
- fix input-field-separator problems with /proc/net/dev parsing
|
||||
- get them in the right order on flip flag
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 17 Jan 2012 12:56:23 -0600
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ __network() {
|
|||
;;
|
||||
${interface}:*)
|
||||
# Interface and tbytes got munged together
|
||||
[ "$i" = "up" ] && x2=${iface##*:} || x2=${rmulticast##*:}
|
||||
[ "$i" = "up" ] && x2=${rmulticast##*:} || x2=${iface##*:}
|
||||
break;
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue