Changeset e2e56e67 in mainline for uspace/srv/inet/inet.c
- Timestamp:
- 2012-02-03T16:46:10Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 06295a9
- Parents:
- f834f90d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/inet/inet.c
rf834f90d re2e56e67 48 48 49 49 #include "inet.h" 50 #include "inet_link.h" 50 51 51 52 #define NAME "inet" … … 76 77 return EEXIST; 77 78 } 79 80 rc = inet_link_discovery_start(); 81 if (rc != EOK) 82 return EEXIST; 78 83 79 84 return EOK; … … 238 243 int rc; 239 244 240 printf(NAME ": HelenOS Internet Protocol service ");245 printf(NAME ": HelenOS Internet Protocol service\n"); 241 246 242 247 if (log_init(NAME, LVL_DEBUG) != EOK) { 243 printf(NAME ": Failed to initialize logging. ");248 printf(NAME ": Failed to initialize logging.\n"); 244 249 return 1; 245 250 }
Note:
See TracChangeset
for help on using the changeset viewer.