Changes in uspace/srv/net/dhcp/main.c [fafb8e5:beb83c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
rfafb8e5 rbeb83c1 91 91 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_link_add_srv()"); 92 92 93 link_id = ipc_get_arg1(call);93 link_id = IPC_GET_ARG1(*call); 94 94 95 95 rc = dhcpsrv_link_add(link_id); … … 104 104 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_link_remove_srv()"); 105 105 106 link_id = ipc_get_arg1(call);106 link_id = IPC_GET_ARG1(*call); 107 107 108 108 rc = dhcpsrv_link_remove(link_id); … … 117 117 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_discover_srv()"); 118 118 119 link_id = ipc_get_arg1(call);119 link_id = IPC_GET_ARG1(*call); 120 120 121 121 rc = dhcpsrv_discover(link_id); … … 133 133 ipc_call_t call; 134 134 async_get_call(&call); 135 sysarg_t method = ipc_get_imethod(&call);135 sysarg_t method = IPC_GET_IMETHOD(call); 136 136 137 137 if (!method) {
Note:
See TracChangeset
for help on using the changeset viewer.