Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2530 → Rev 2531

/trunk/uspace/srv/vfs/vfs.c
123,7 → 123,7
* The first call has to be IPC_M_DATA_SEND in which we receive the
* VFS info structure from the client FS.
*/
if (!ipc_data_send_accept(&callid, &call, NULL, &size)) {
if (!ipc_data_receive(&callid, &call, NULL, &size)) {
/*
* The client doesn't obey the same protocol as we do.
*/
158,7 → 158,7
}
link_initialize(&fs_info->fs_link);
rc = ipc_data_send_answer(callid, &call, &fs_info->vfs_info, size);
rc = ipc_data_deliver(callid, &call, &fs_info->vfs_info, size);
if (!rc) {
free(fs_info);
ipc_answer_fast(callid, rc, 0, 0);