Changeset 472c09d in mainline for uspace/srv/devmap/devmap.c
- Timestamp:
- 2010-02-03T15:18:40Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- b4cbef1
- Parents:
- 28be7fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devmap/devmap.c
r28be7fa r472c09d 396 396 * Get driver name 397 397 */ 398 int rc = async_ data_string_receive(&driver->name, DEVMAP_NAME_MAXLEN);398 int rc = async_string_receive(&driver->name, DEVMAP_NAME_MAXLEN, NULL); 399 399 if (rc != EOK) { 400 400 free(driver); … … 510 510 /* Get fqdn */ 511 511 char *fqdn; 512 int rc = async_ data_string_receive(&fqdn, DEVMAP_NAME_MAXLEN);512 int rc = async_string_receive(&fqdn, DEVMAP_NAME_MAXLEN, NULL); 513 513 if (rc != EOK) { 514 514 free(device); … … 622 622 623 623 /* Get fqdn */ 624 int rc = async_ data_string_receive(&fqdn, DEVMAP_NAME_MAXLEN);624 int rc = async_string_receive(&fqdn, DEVMAP_NAME_MAXLEN, NULL); 625 625 if (rc != EOK) { 626 626 ipc_answer_0(iid, rc); … … 683 683 684 684 /* Get device name */ 685 int rc = async_ data_string_receive(&name, DEVMAP_NAME_MAXLEN);685 int rc = async_string_receive(&name, DEVMAP_NAME_MAXLEN, NULL); 686 686 if (rc != EOK) { 687 687 ipc_answer_0(iid, rc);
Note:
See TracChangeset
for help on using the changeset viewer.