From 52b9db95764fcdee9195113d7df225634a19c9f4 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Fri, 30 Mar 2012 16:58:32 -0700 Subject: Cleanup --dry-run option code Signed-off-by: Geoff Levand --- discover/device-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discover/device-handler.c') diff --git a/discover/device-handler.c b/discover/device-handler.c index 12bc40f..6e03ef3 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -201,7 +201,7 @@ static int mount_device(struct discover_context *ctx) argv[4] = "ro"; argv[5] = NULL; - if (pb_run_cmd(argv, 1)) { + if (pb_run_cmd(argv, 1, 0)) { /* Retry mount without ro option. */ @@ -210,7 +210,7 @@ static int mount_device(struct discover_context *ctx) argv[2] = ctx->mount_path; argv[3] = NULL; - if (pb_run_cmd(argv, 1)) + if (pb_run_cmd(argv, 1, 0)) goto out_rmdir; } -- cgit v1.2.1