Changes in uspace/srv/net/net/net.c [01a9ef5:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net.c
r01a9ef5 ra000878c 154 154 * @returns Other error codes as defined for the add_configuration() function. 155 155 */ 156 int read_netif_configuration( c har * name, netif_ref netif );156 int read_netif_configuration( const char * name, netif_ref netif ); 157 157 158 158 /** Networking module global data. … … 413 413 } 414 414 415 int read_netif_configuration( c har * name, netif_ref netif ){415 int read_netif_configuration( const char * name, netif_ref netif ){ 416 416 // read the netif configuration file 417 417 return read_configuration_file( CONF_DIR, name, & netif->configuration ); … … 485 485 486 486 #ifdef CONFIG_NETIF_DP8390 487 c har * conf_files[] = { "lo", "ne2k" };487 const char * conf_files[] = { "lo", "ne2k" }; 488 488 #else 489 c har * conf_files[] = { "lo" };489 const char * conf_files[] = { "lo" }; 490 490 #endif 491 491
Note:
See TracChangeset
for help on using the changeset viewer.