7ab46c3
--- net-tools-1.60/ifconfig.c.old	2005-03-30 10:14:03.000000000 +0200
7ab46c3
+++ net-tools-1.60/ifconfig.c	2005-03-30 10:40:50.000000000 +0200
7ab46c3
@@ -177,7 +177,7 @@
7ab46c3
 
7ab46c3
 static void usage(void)
7ab46c3
 {
7ab46c3
-    fprintf(stderr, _("Usage:\n  ifconfig [-a] [-i] [-v] [-s] <interface> [[<AF>] <address>]\n"));
7ab46c3
+    fprintf(stderr, _("Usage:\n  ifconfig [-a] [-v] [-s] <interface> [[<AF>] <address>]\n"));
7ab46c3
 #if HAVE_AFINET
7ab46c3
     fprintf(stderr, _("  [add <address>[/<prefixlen>]]\n"));
7ab46c3
     fprintf(stderr, _("  [del <address>[/<prefixlen>]]\n"));
7ab46c3
--- net-tools-1.60/lib/interface.c.old	2005-03-30 10:14:03.000000000 +0200
7ab46c3
+++ net-tools-1.60/lib/interface.c	2005-03-30 11:05:38.000000000 +0200
7ab46c3
@@ -620,7 +620,7 @@
7ab46c3
 
7ab46c3
 void ife_print_short(struct interface *ptr)
7ab46c3
 {
7ab46c3
-    printf("%-9.9s ", ptr->name);
7ab46c3
+    printf("%-9s ", ptr->name);
7ab46c3
     printf("%5d %3d ", ptr->mtu, ptr->metric);
7ab46c3
     /* If needed, display the interface statistics. */
7ab46c3
     if (ptr->statistics_valid) {
7ab46c3
@@ -711,7 +711,7 @@
7ab46c3
     if (hw == NULL)
7ab46c3
 	hw = get_hwntype(-1);
7ab46c3
 
7ab46c3
-    printf(_("%-9.9s Link encap:%s  "), ptr->name, hw->title);
7ab46c3
+    printf(_("%-9s Link encap:%s  "), ptr->name, hw->title);
7ab46c3
     /* For some hardware types (eg Ash, ATM) we don't print the 
7ab46c3
        hardware address if it's null.  */
7ab46c3
     if (hw->print != NULL && (! (hw_null_address(hw, ptr->hwaddr) &&