summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2010-06-12 11:02:30 -0700
committerStig Thormodsrud <stig@vyatta.com>2010-06-12 11:02:30 -0700
commit1c342afa73a565de6ff9310d1e4cdfa6a856bb5d (patch)
tree773291e7b673a6555f28cc579b4954a3e42faf3d /scripts
parentad5eef05d0f58a4ca330005a7590bbeed0655a1e (diff)
downloadvyatta-op-1c342afa73a565de6ff9310d1e4cdfa6a856bb5d.tar.gz
vyatta-op-1c342afa73a565de6ff9310d1e4cdfa6a856bb5d.zip
Fix 5497: display entire interface description in the operational command output
of 'show interfaces'
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-show-interfaces.pl1
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 {