Changes in uspace/srv/fs/cdfs/cdfs.c [4979403:a26895d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs.c
r4979403 ra26895d 52 52 .concurrent_read_write = false, 53 53 .write_retains_size = false, 54 .instance = 0,55 54 }; 56 55 … … 59 58 printf("%s: HelenOS cdfs file system server\n", NAME); 60 59 61 if (argc == 3) {62 if (!str_cmp(argv[1], "--instance"))63 cdfs_vfs_info.instance = strtol(argv[2], NULL, 10);64 else {65 printf(NAME " Unrecognized parameters");66 return -1;67 }68 }69 70 60 if (!cdfs_init()) { 71 61 printf("%s: failed to initialize cdfs\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.