Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/mfs/mfs.c

    r4979403 r7a46bfe  
    3939
    4040#include <ipc/services.h>
    41 #include <stdlib.h>
    42 #include <str.h>
    4341#include <ns.h>
    4442#include <async.h>
     
    5452        .concurrent_read_write = false,
    5553        .write_retains_size = false,
    56         .instance = 0,
    5754};
    5855
     
    6259
    6360        printf(NAME ": HelenOS Minix file system server\n");
    64 
    65         if (argc == 3) {
    66                 if (!str_cmp(argv[1], "--instance"))
    67                         mfs_vfs_info.instance = strtol(argv[2], NULL, 10);
    68                 else {
    69                         printf(NAME " Unrecognized parameters");
    70                         rc = -1;
    71                         goto err;
    72                 }
    73         }
    7461
    7562        async_sess_t *vfs_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
Note: See TracChangeset for help on using the changeset viewer.