BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0001284 [BusyBox] Networking Support minor always 03-21-07 18:43 03-22-07 12:36
Reporter rockeychu View Status public  
Assigned To BusyBox
Priority normal Resolution fixed  
Status closed   Product Version svn
Summary 0001284: "ifconfig" can't list alias of network interface (with patch)
Description Since revision 18120, "ifconfig" can't list any alias of network interface, or can't show statistics of network interface.

Patch as following:

Index: networking/interface.c
===================================================================
--- networking/interface.c (revision 18200)
+++ networking/interface.c (working copy)
@@ -592,7 +592,10 @@

 static int if_readlist(void)
 {
- return if_readlist_proc(NULL);
+ int err = if_readlist_proc(NULL);
+ if (!err)
+ err = if_readconf();
+ return err;
 }

Additional Information
Attached Files

- Relationships

- Notes
(0002272)
vda
03-22-07 12:36

Applied in rev 18208. Thanks!
 

- Issue History
Date Modified Username Field Change
03-21-07 18:43 rockeychu New Issue
03-21-07 18:43 rockeychu Status new => assigned
03-21-07 18:43 rockeychu Assigned To  => BusyBox
03-22-07 12:36 vda Status assigned => closed
03-22-07 12:36 vda Note Added: 0002272
03-22-07 12:36 vda Resolution open => fixed


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker