Changes in uspace/lib/c/generic/ns.c [d1e18573:f51b1d3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ns.c
rd1e18573 rf51b1d3 54 54 if (!exch) 55 55 return NULL; 56 56 57 async_sess_t *sess = 57 58 async_connect_me_to(mgmt, exch, service, arg2, arg3); 58 59 async_exchange_end(exch); 59 60 60 61 if (!sess) 61 62 return NULL; … … 75 76 { 76 77 async_exch_t *exch = async_exchange_begin(session_ns); 78 if (!exch) 79 return NULL; 77 80 async_sess_t *sess = 78 81 async_connect_me_to_blocking(mgmt, exch, service, arg2, arg3); 79 82 async_exchange_end(exch); 83 84 if (!sess) 85 return NULL; 80 86 81 87 /*
Note:
See TracChangeset
for help on using the changeset viewer.