Changeset 26f2af0 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2007-09-18T19:58:19Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 47a776f9
- Parents:
- c3b25510
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
rc3b25510 r26f2af0 124 124 * VFS info structure from the client FS. 125 125 */ 126 if (!ipc_data_ send_accept(&callid, &call, NULL, &size)) {126 if (!ipc_data_receive(&callid, &call, NULL, &size)) { 127 127 /* 128 128 * The client doesn't obey the same protocol as we do. … … 159 159 link_initialize(&fs_info->fs_link); 160 160 161 rc = ipc_data_ send_answer(callid, &call, &fs_info->vfs_info, size);161 rc = ipc_data_deliver(callid, &call, &fs_info->vfs_info, size); 162 162 if (!rc) { 163 163 free(fs_info);
Note:
See TracChangeset
for help on using the changeset viewer.