9
0
Fork 0

commands/mount: Return real error code if "mount" fail

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2014-04-26 14:40:09 +04:00 committed by Sascha Hauer
parent 9b2fb23ea9
commit 2c8c0f3488
1 changed files with 2 additions and 7 deletions

View File

@ -31,8 +31,7 @@
static int do_mount(int argc, char *argv[])
{
int opt;
int ret = 0, verbose = 0;
int opt, verbose = 0;
struct driver_d *drv;
const char *type = NULL;
const char *mountpoint, *dev;
@ -113,11 +112,7 @@ static int do_mount(int argc, char *argv[])
mountpoint = argv[optind + 1];
}
if ((ret = mount(dev, type, mountpoint, fsoptions))) {
perror("mount");
return 1;
}
return 0;
return mount(dev, type, mountpoint, fsoptions);
}
BAREBOX_CMD_HELP_START(mount)