Changes in uspace/srv/net/nconfsrv/nconfsrv.c [8d2dd7f2:c1694b6b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nconfsrv/nconfsrv.c
r8d2dd7f2 rc1694b6b 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.