Changeset 9cfbf2f in mainline for uspace/srv/ns/ns.c
- Timestamp:
- 2015-08-22T03:53:34Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 57dea62
- Parents:
- 1a522e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/ns.c
r1a522e5 r9cfbf2f 84 84 break; 85 85 case IPC_M_CONNECT_TO_ME: 86 iface = IPC_GET_ARG1(call);87 86 service = IPC_GET_ARG2(call); 88 87 phone = IPC_GET_ARG5(call); 89 90 (void) iface;91 88 92 89 /* … … 104 101 service = IPC_GET_ARG2(call); 105 102 106 (void) iface;107 108 103 /* 109 104 * Client requests to be connected to a service. 110 105 */ 111 106 if (service_clonable(service)) { 112 connect_to_clonable(service, &call, callid);107 connect_to_clonable(service, iface, &call, callid); 113 108 continue; 114 109 } else { 115 connect_to_service(service, &call, callid);110 connect_to_service(service, iface, &call, callid); 116 111 continue; 117 112 }
Note:
See TracChangeset
for help on using the changeset viewer.