Changes in uspace/lib/net/il/il_skel.c [ffa2c8ef:9934f7d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/il_skel.c
rffa2c8ef r9934f7d 42 42 #include <net/modules.h> 43 43 44 // FIXME: remove this header 45 #include <kernel/ipc/ipc_methods.h> 46 44 47 /** Default thread for new connections. 45 48 * … … 48 51 * 49 52 */ 50 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall) 53 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall, 54 void *arg) 51 55 { 52 56 /* … … 75 79 * result. 76 80 */ 77 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || 78 (res == EHANGUP)) 81 if ((!IPC_GET_IMETHOD(call)) || (res == EHANGUP)) 79 82 return; 80 83 … … 115 118 goto out; 116 119 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); 118 121 if (rc != EOK) 119 122 goto out;
Note:
See TracChangeset
for help on using the changeset viewer.