Changes in uspace/srv/net/dhcp/main.c [c1694b6b:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
rc1694b6b rb7fd2a0 52 52 static void dhcp_client_conn(ipc_callid_t, ipc_call_t *, void *); 53 53 54 static int dhcp_init(void)54 static errno_t dhcp_init(void) 55 55 { 56 int rc;56 errno_t rc; 57 57 58 58 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_init()"); … … 87 87 { 88 88 sysarg_t link_id; 89 int rc;89 errno_t rc; 90 90 91 91 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_link_add_srv()"); … … 100 100 { 101 101 sysarg_t link_id; 102 int rc;102 errno_t rc; 103 103 104 104 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_link_remove_srv()"); … … 113 113 { 114 114 sysarg_t link_id; 115 int rc;115 errno_t rc; 116 116 117 117 log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_discover_srv()"); … … 159 159 int main(int argc, char *argv[]) 160 160 { 161 int rc;161 errno_t rc; 162 162 163 163 printf("%s: DHCP Service\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.