Changeset b8b1adb1 in mainline for uspace/lib/c/generic
- Timestamp:
- 2013-09-15T16:00:37Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 947e2ef
- Parents:
- 695b6ff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inetcfg.c
r695b6ff rb8b1adb1 279 279 aid_t req = async_send_1(exch, INETCFG_LINK_GET, link_id, &answer); 280 280 aid_t dreq = async_data_read(exch, name_buf, LOC_NAME_MAXLEN, &dreply); 281 int rc = async_data_read_start(exch, &linfo->mac_addr, sizeof(addr48_t)); 281 282 async_wait_for(dreq, &dretval); 282 283 283 284 async_exchange_end(exch); 284 285 285 if (dretval != EOK ) {286 if (dretval != EOK || rc != EOK) { 286 287 async_forget(req); 287 288 return dretval;
Note:
See TracChangeset
for help on using the changeset viewer.