Changeset 08e103d4 in mainline for uspace/lib/drv/generic/remote_ieee80211.c
- Timestamp:
- 2019-02-05T18:26:05Z (6 years ago)
- Children:
- 1d2f85e
- Parents:
- d066259
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-05 16:16:55)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-05 18:26:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_ieee80211.c
rd066259 r08e103d4 138 138 139 139 errno_t rc = async_data_write_start(exch, ssid_start, 140 str_ size(ssid_start) + 1);140 str_bytes(ssid_start) + 1); 141 141 if (rc != EOK) { 142 142 async_exchange_end(exch); … … 153 153 password = (char *) ""; 154 154 155 rc = async_data_write_start(exch, password, str_ size(password) + 1);155 rc = async_data_write_start(exch, password, str_bytes(password) + 1); 156 156 if (rc != EOK) { 157 157 async_exchange_end(exch);
Note:
See TracChangeset
for help on using the changeset viewer.