Changes in uspace/lib/c/generic/inetcfg.c [02a09ed:b8b1adb1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inetcfg.c
r02a09ed 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.