Changeset 0c2eee0 in mainline


Ignore:
Timestamp:
2009-05-19T21:41:55Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c0e5d2
Parents:
287e83f
Message:

Remove unused and non-functional code.

File:
1 edited

Legend:

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

    r287e83f r0c2eee0  
    5353{
    5454        bool keep_on_going = true;
    55        
     55
    5656        /*
    5757         * The connection was opened via the IPC_CONNECT_ME_TO call.
     
    8080                case IPC_M_PHONE_HUNGUP:
    8181                        keep_on_going = false;
    82                         break;
    83                 case IPC_M_CONNECT_ME_TO:
    84                         /*
    85                          * Connect the client file system to another one.
    86                          */
    87                         /* FIXME:
    88                          * Prevent ordinary clients from connecting to file
    89                          * system servers directly. This should be solved by
    90                          * applying some security mechanisms.
    91                          */
    92                         fs_handle = IPC_GET_ARG1(call);
    93                         phone = vfs_grab_phone(fs_handle);
    94                         (void) ipc_forward_fast(callid, phone, 0, 0, 0,
    95                             IPC_FF_NONE);
    96                         vfs_release_phone(phone);
    9782                        break;
    9883                case VFS_REGISTER:
Note: See TracChangeset for help on using the changeset viewer.