Changeset 9cfbf2f in mainline for uspace/srv/ns/ns.c


Ignore:
Timestamp:
2015-08-22T03:53:34Z (9 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
57dea62
Parents:
1a522e5
Message:

improve code readability
coding style

File:
1 edited

Legend:

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

    r1a522e5 r9cfbf2f  
    8484                        break;
    8585                case IPC_M_CONNECT_TO_ME:
    86                         iface = IPC_GET_ARG1(call);
    8786                        service = IPC_GET_ARG2(call);
    8887                        phone = IPC_GET_ARG5(call);
    89                        
    90                         (void) iface;
    9188                       
    9289                        /*
     
    104101                        service = IPC_GET_ARG2(call);
    105102                       
    106                         (void) iface;
    107                        
    108103                        /*
    109104                         * Client requests to be connected to a service.
    110105                         */
    111106                        if (service_clonable(service)) {
    112                                 connect_to_clonable(service, &call, callid);
     107                                connect_to_clonable(service, iface, &call, callid);
    113108                                continue;
    114109                        } else {
    115                                 connect_to_service(service, &call, callid);
     110                                connect_to_service(service, iface, &call, callid);
    116111                                continue;
    117112                        }
Note: See TracChangeset for help on using the changeset viewer.