mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] commands/mount: Return real error code if "mount" fail
@ 2014-04-26 10:40 Alexander Shiyan
  2014-04-26 10:40 ` [PATCH 2/2] commands/umount: Return real error code if "umount" fail Alexander Shiyan
  2014-04-27  6:42 ` [PATCH 1/2] commands/mount: Return real error code if "mount" fail Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Alexander Shiyan @ 2014-04-26 10:40 UTC (permalink / raw)
  To: barebox

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 commands/mount.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/commands/mount.c b/commands/mount.c
index 691bc29..8629bac 100644
--- a/commands/mount.c
+++ b/commands/mount.c
@@ -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)
-- 
1.8.3.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-27  6:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-26 10:40 [PATCH 1/2] commands/mount: Return real error code if "mount" fail Alexander Shiyan
2014-04-26 10:40 ` [PATCH 2/2] commands/umount: Return real error code if "umount" fail Alexander Shiyan
2014-04-27  6:42 ` [PATCH 1/2] commands/mount: Return real error code if "mount" fail Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox