Subversion Repositories HelenOS

Rev

Rev 2698 | Rev 2768 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2698 Rev 2731
Line 104... Line 104...
104
     */
104
     */
105
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_LOOKUP)] != VFS_OP_DEFINED) {
105
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_LOOKUP)] != VFS_OP_DEFINED) {
106
        dprintf("Operation VFS_LOOKUP not defined by the client.\n");
106
        dprintf("Operation VFS_LOOKUP not defined by the client.\n");
107
        return false;
107
        return false;
108
    }
108
    }
109
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_OPEN)] != VFS_OP_DEFINED) {
-
 
110
        dprintf("Operation VFS_OPEN not defined by the client.\n");
-
 
111
        return false;
-
 
112
    }
-
 
113
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_CLOSE)] != VFS_OP_DEFINED) {
-
 
114
        dprintf("Operation VFS_CLOSE not defined by the client.\n");
-
 
115
        return false;
-
 
116
    }
-
 
117
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_READ)] != VFS_OP_DEFINED) {
109
    if (info->ops[IPC_METHOD_TO_VFS_OP(VFS_READ)] != VFS_OP_DEFINED) {
118
        dprintf("Operation VFS_READ not defined by the client.\n");
110
        dprintf("Operation VFS_READ not defined by the client.\n");
119
        return false;
111
        return false;
120
    }
112
    }
121
   
113