Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/il/il_skel.c

    rffa2c8ef r9934f7d  
    4242#include <net/modules.h>
    4343
     44// FIXME: remove this header
     45#include <kernel/ipc/ipc_methods.h>
     46
    4447/** Default thread for new connections.
    4548 *
     
    4851 *
    4952 */
    50 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall)
     53static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall,
     54    void *arg)
    5155{
    5256        /*
     
    7579                 * result.
    7680                 */
    77                 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) ||
    78                     (res == EHANGUP))
     81                if ((!IPC_GET_IMETHOD(call)) || (res == EHANGUP))
    7982                        return;
    8083               
     
    115118                goto out;
    116119       
    117         rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL);
     120        rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL, NULL);
    118121        if (rc != EOK)
    119122                goto out;
Note: See TracChangeset for help on using the changeset viewer.