Changeset b5ba8f6 in mainline for uspace/srv/net/slip/slip.c
- Timestamp:
- 2013-09-13T13:11:53Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1eaa3cf
- Parents:
- 95027b5 (diff), 1c5f6f8 (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/slip/slip.c
r95027b5 rb5ba8f6 333 333 "Failed to connect to service %s (ID=%d)", 334 334 svcstr, (int) svcid); 335 return rc;335 return ENOENT; 336 336 } 337 337 slip_iplink.arg = sess_out; … … 342 342 "Failed to connect to service %s (ID=%d)", 343 343 svcstr, (int) svcid); 344 rc = ENOENT; 344 345 goto fail; 345 346 } … … 365 366 log_msg(LOG_DEFAULT, LVL_ERROR, 366 367 "Failed to create receive fibril."); 368 rc = ENOENT; 367 369 goto fail; 368 370 }
Note:
See TracChangeset
for help on using the changeset viewer.