aboutsummaryrefslogtreecommitdiff
path: root/networking/interface.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-05-23 23:04:15 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-05-23 23:04:15 +0200
commita85b66e0f906fedbba7fbaf5ea9ac0dbfc0e4916 (patch)
tree2002c858c2dfd5242fc60ecdf3824cc889b33049 /networking/interface.c
parent599ae1eb9f20b4731735e14f9bac6371ad89b6d7 (diff)
downloadbusybox-a85b66e0f906fedbba7fbaf5ea9ac0dbfc0e4916.tar.gz
ifconfig: do not truncate interface names. closes bug 1795
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/interface.c')
-rw-r--r--networking/interface.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/interface.c b/networking/interface.c
index a59f310a6..659ac36ea 100644
--- a/networking/interface.c
+++ b/networking/interface.c
@@ -1002,7 +1002,7 @@ static void ife_print(struct interface *ptr)
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
@@ -1178,7 +1178,6 @@ static int for_all_interfaces(int (*doit) (struct interface *, void *),
return -1;
for (ife = int_list; ife; ife = ife->next) {
int err = doit(ife, cookie);
-
if (err)
return err;
}