Changeset 132ab5d1 in mainline for uspace/srv/net/nconfsrv/nconfsrv.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (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
-
uspace/srv/net/nconfsrv/nconfsrv.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nconfsrv/nconfsrv.c
r8bfb163 r132ab5d1 38 38 #include <async.h> 39 39 #include <errno.h> 40 #include <str_error.h> 40 41 #include <fibril_synch.h> 41 42 #include <inet/dhcp.h> … … 80 81 rc = loc_server_register(NAME); 81 82 if (rc != EOK) { 82 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server (%d).", rc);83 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering server: %s.", str_error(rc)); 83 84 return EEXIST; 84 85 } … … 86 87 rc = loc_service_register(SERVICE_NAME_NETCONF, &sid); 87 88 if (rc != EOK) { 88 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service (%d).", rc);89 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering service: %s.", str_error(rc)); 89 90 return EEXIST; 90 91 }
Note:
See TracChangeset
for help on using the changeset viewer.
