| Anonymous | Login | Signup for a new account | 11-10-2008 11:13 PST |
| Main | My View | View Issues | Change Log | Docs |
| 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 | |||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |