Changes in uspace/srv/net/slip/slip.c [a17356fd:b11f6fb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/slip/slip.c
ra17356fd rb11f6fb 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.