Ignore:
Timestamp:
2017-04-01T06:49:10Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b19e892
Parents:
6e5562a
Message:

Rename (un)mount to vfs_(un)mount_path

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/mount/mount.c

    r6e5562a r80743a1  
    147147                mopts = t_argv[4];
    148148
    149         rc = mount(t_argv[1], t_argv[2], dev, mopts, 0, instance);
     149        rc = vfs_mount_path(t_argv[2], t_argv[1], dev, mopts, 0, instance);
    150150        if (rc != EOK) {
    151151                printf("Unable to mount %s filesystem to %s on %s (rc=%s)\n",
    152                     t_argv[1], t_argv[2], t_argv[3], str_error(rc));
     152                    t_argv[2], t_argv[1], t_argv[3], str_error(rc));
    153153                return CMD_FAILURE;
    154154        }
Note: See TracChangeset for help on using the changeset viewer.