Changeset 7e8403b in mainline


Ignore:
Timestamp:
2011-11-05T15:43:02Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b8e5b7
Parents:
c8a894d
Message:

Revert previous commit, fix ipc answer in case of error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    rc8a894d r7e8403b  
    13551355        if (IPC_GET_IMETHOD(data) != VFS_IN_PING) {
    13561356                rc = ENOTSUP;
    1357                 async_answer_1(callid, rc, 0);
     1357                async_answer_0(callid, rc);
    13581358                goto exit;
    13591359        }
     
    13881388                if (IPC_GET_IMETHOD(data) != VFS_IN_PING) {
    13891389                        rc = ENOTSUP;
    1390                         async_answer_3(callid, rc, 0, 0, 0);
     1390                        async_answer_0(callid, rc);
    13911391                        goto exit;
    13921392                }
Note: See TracChangeset for help on using the changeset viewer.