Ignore:
File:
1 edited

Legend:

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

    r409f5fc rd0d1f4f  
    4242#include <ipc/ipc.h>
    4343#include <ipc/net.h>
    44 #include <errno.h>
    4544
    4645#include <ip_interface.h>
     
    6160int net_initialize_build(async_client_conn_t client_connection)
    6261{
    63         int rc;
     62        ERROR_DECLARE;
    6463       
    6564        task_id_t task_id = spawn("/srv/ip");
     
    6766                return EINVAL;
    6867       
    69         rc = add_module(NULL, &net_globals.modules, IP_NAME,
    70             IP_FILENAME, SERVICE_IP, task_id, ip_connect_module);
    71         if (rc != EOK)
    72                 return rc;
     68        ERROR_PROPAGATE(add_module(NULL, &net_globals.modules, IP_NAME,
     69            IP_FILENAME, SERVICE_IP, task_id, ip_connect_module));
    7370       
    7471        if (!spawn("/srv/icmp"))
Note: See TracChangeset for help on using the changeset viewer.