get them in the right order on flip flag

This commit is contained in:
Dustin Kirkland 2012-01-18 17:52:19 -06:00
commit 8e7628a51d
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View file

@ -2,6 +2,7 @@ byobu (5.5) unreleased; urgency=low
* usr/lib/byobu/ec2_cost, usr/lib/byobu/network: * usr/lib/byobu/ec2_cost, usr/lib/byobu/network:
- fix input-field-separator problems with /proc/net/dev parsing - 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 -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 17 Jan 2012 12:56:23 -0600

View file

@ -49,7 +49,7 @@ __network() {
;; ;;
${interface}:*) ${interface}:*)
# Interface and tbytes got munged together # Interface and tbytes got munged together
[ "$i" = "up" ] && x2=${iface##*:} || x2=${rmulticast##*:} [ "$i" = "up" ] && x2=${rmulticast##*:} || x2=${iface##*:}
break; break;
;; ;;
esac esac