Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/net.c

    ra000878c r01a9ef5  
    154154 *  @returns Other error codes as defined for the add_configuration() function.
    155155 */
    156 int     read_netif_configuration( const char * name, netif_ref netif );
     156int     read_netif_configuration( char * name, netif_ref netif );
    157157
    158158/** Networking module global data.
     
    413413}
    414414
    415 int read_netif_configuration( const char * name, netif_ref netif ){
     415int read_netif_configuration( char * name, netif_ref netif ){
    416416        // read the netif configuration file
    417417        return read_configuration_file( CONF_DIR, name, & netif->configuration );
     
    485485
    486486#ifdef CONFIG_NETIF_DP8390
    487         const char *            conf_files[] = { "lo", "ne2k" };
     487        char *          conf_files[] = { "lo", "ne2k" };
    488488#else
    489         const char *            conf_files[] = { "lo" };
     489        char *          conf_files[] = { "lo" };
    490490#endif
    491491
Note: See TracChangeset for help on using the changeset viewer.