Changeset 36d852c in mainline for uspace/srv/vfs/vfs_open.c
- Timestamp:
- 2007-12-23T19:45:30Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 654b7db
- Parents:
- 5c786d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_open.c
r5c786d1 r36d852c 62 62 ipc_callid_t callid; 63 63 64 if (!ipc_data_ receive(&callid, NULL, &size)) {64 if (!ipc_data_write_receive(&callid, NULL, &size)) { 65 65 ipc_answer_0(callid, EINVAL); 66 66 ipc_answer_0(rid, EINVAL); … … 83 83 84 84 int rc; 85 if ((rc = ipc_data_ deliver(callid, path, size))) {85 if ((rc = ipc_data_write_deliver(callid, path, size))) { 86 86 ipc_answer_0(rid, rc); 87 87 free(path);
Note:
See TracChangeset
for help on using the changeset viewer.