Changeset 1c6c3e1d in mainline for uspace/srv/net/dhcp/main.c
- Timestamp:
- 2023-10-22T17:55:33Z (21 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 350ec74
- Parents:
- 315d487 (diff), 133461c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
r315d487 r1c6c3e1d 1 1 /* 2 * Copyright (c) 20 13 Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 54 54 static errno_t dhcp_init(void) 55 55 { 56 loc_srv_t *srv; 56 57 errno_t rc; 57 58 … … 68 69 async_set_fallback_port_handler(dhcp_client_conn, NULL); 69 70 70 rc = loc_server_register(NAME );71 rc = loc_server_register(NAME, &srv); 71 72 if (rc != EOK) { 72 73 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server: %s.", str_error(rc)); … … 75 76 76 77 service_id_t sid; 77 rc = loc_service_register( SERVICE_NAME_DHCP, &sid);78 rc = loc_service_register(srv, SERVICE_NAME_DHCP, &sid); 78 79 if (rc != EOK) { 80 loc_server_unregister(srv); 79 81 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service: %s.", str_error(rc)); 80 82 return EEXIST;
Note:
See TracChangeset
for help on using the changeset viewer.