[PATCH 2/2] commands/umount: Return real error code if "umount" fail

Alexander Shiyan shc_work at mail.ru
Sat Apr 26 03:40:10 PDT 2014


Signed-off-by: Alexander Shiyan <shc_work at mail.ru>
---
 commands/umount.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/commands/umount.c b/commands/umount.c
index e6de1bc..f0f9fce 100644
--- a/commands/umount.c
+++ b/commands/umount.c
@@ -23,16 +23,10 @@
 
 static int do_umount(int argc, char *argv[])
 {
-	int ret = 0;
-
 	if (argc != 2)
 		return COMMAND_ERROR_USAGE;
 
-	if ((ret = umount(argv[1]))) {
-		perror("umount");
-		return 1;
-	}
-	return 0;
+	return umount(argv[1]);
 }
 
 static const __maybe_unused char cmd_umount_help[] =
-- 
1.8.3.2




More information about the barebox mailing list