diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2010-06-12 11:02:30 -0700 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2010-06-12 11:02:30 -0700 |
commit | 1c342afa73a565de6ff9310d1e4cdfa6a856bb5d (patch) | |
tree | 773291e7b673a6555f28cc579b4954a3e42faf3d | |
parent | ad5eef05d0f58a4ca330005a7590bbeed0655a1e (diff) | |
download | vyatta-op-1c342afa73a565de6ff9310d1e4cdfa6a856bb5d.tar.gz vyatta-op-1c342afa73a565de6ff9310d1e4cdfa6a856bb5d.zip |
Fix 5497: display entire interface description in the operational command output
of
'show interfaces'
-rwxr-xr-x | scripts/vyatta-show-interfaces.pl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/vyatta-show-interfaces.pl b/scripts/vyatta-show-interfaces.pl index 6e071e2..6daa2a4 100755 --- a/scripts/vyatta-show-interfaces.pl +++ b/scripts/vyatta-show-interfaces.pl @@ -242,7 +242,6 @@ sub run_show_intf_brief { my @ip_addr = get_ipaddr($intf); my ($state, $link) = get_state_link($intf); my $description = get_intf_description($intf); - $description = substr($description, 0, 29); # make it fit on 1 line if (scalar(@ip_addr) == 0) { printf($format, $intf, "-", $state, $link, $description); } else { |