Hello!
I apply this patch:
------------------------------------------------------------------------------
--- interface.c.old 2007-01-07 22:27:17.000000000 +0100
+++ interface.c 2007-01-07 22:27:29.000000000 +0100
@@ -594,7 +594,7 @@
void ife_print_short(struct interface *ptr)
{
- printf("%-5.5s ", ptr->name);
+ printf("%-9s ", ptr->name);
printf("%5d %-2d ", ptr->mtu, ptr->metric);
/* If needed, display the interface statistics. */
if (ptr->statistics_valid) {
@@ -685,7 +685,7 @@
if (hw == NULL)
hw = get_hwntype(-1);
- printf(_("%-9.9s Link encap:%s "), ptr->name, hw->title);
+ printf(_("%-9s Link encap:%s "), ptr->name, hw->title);
/* For some hardware types (eg Ash, ATM) we don't print the
hardware address if it's null. */
if (hw->print != NULL && (! (hw_null_address(hw, ptr->hwaddr) &&
--------------------------------------------------------------------------------
And works for me...
Thanx
Csaba Szep