Changeset c1694b6b in mainline for uspace/srv/net/nconfsrv
- Timestamp:
 - 2017-12-08T21:03:35Z (8 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - f77c1c9
 - Parents:
 - 9eb1ff5
 - git-author:
 - Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-07 18:20:13)
 - git-committer:
 - Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 21:03:35)
 - Location:
 - uspace/srv/net/nconfsrv
 - Files:
 - 
      
- 2 edited
 
- 
          
  iplink.c (modified) (2 diffs)
 - 
          
  nconfsrv.c (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/srv/net/nconfsrv/iplink.c
r9eb1ff5 rc1694b6b 37 37 #include <stdbool.h> 38 38 #include <errno.h> 39 #include <str_error.h> 39 40 #include <fibril_synch.h> 40 41 #include <inet/dhcp.h> … … 181 182 if (rc != EOK) { 182 183 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback for IP link " 183 "discovery (%d).", rc);184 "discovery: %s.", str_error(rc)); 184 185 return rc; 185 186 }  - 
      
uspace/srv/net/nconfsrv/nconfsrv.c
r9eb1ff5 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.
  