From 604a1ccf072f9f33326fb6dc919c1b6233d40866 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Thu, 8 Mar 2012 20:48:21 -0800 Subject: Add --start-daemon option to ui programs Add the option --start-daemon to automatically start pb-discover if it is not already started. For use when running as a stand-alone app. Signed-off-by: Geoff Levand --- discover/device-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discover') diff --git a/discover/device-handler.c b/discover/device-handler.c index 6457dce..2888914 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -201,10 +201,10 @@ static int mount_device(struct discover_context *ctx) argv[4] = "ro"; argv[5] = NULL; - if (pb_run_cmd(argv)) + if (pb_run_cmd(argv, 1)) argv[3] = NULL; /* try without ro */ - if (pb_run_cmd(argv)) + if (pb_run_cmd(argv, 1)) goto out_rmdir; setup_device_links(ctx); -- cgit v1.2.1