From: Hwankyu Jhun Date: Wed, 5 Apr 2017 06:54:22 +0000 (+0900) Subject: Fix log messages X-Git-Tag: accepted/tizen/unified/20170428.033044~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bdeb0fd445c6fc5ce88eb7c37ae82d93befef3cf;p=platform%2Fcore%2Fappfw%2Flaunchpad.git Fix log messages Change-Id: I0a51bd9e10e6dd5e2c4c1b50746c07606b275fd2 Signed-off-by: Hwankyu Jhun --- diff --git a/src/launchpad.c b/src/launchpad.c index fef9868..e316954 100755 --- a/src/launchpad.c +++ b/src/launchpad.c @@ -711,7 +711,7 @@ static int __prepare_exec(const char *appid, const char *app_path, /* CHECK PRIVACY */ ret = security_manager_prepare_app_privacy(appid); if (ret != SECURITY_MANAGER_SUCCESS) { - _W("Launching %s has been prohibited", appid); + _W("Launching %s has been denied.", appid); return PAD_ERR_REJECTED; } diff --git a/src/launchpad_lib.c b/src/launchpad_lib.c index c73c4fd..ce13216 100644 --- a/src/launchpad_lib.c +++ b/src/launchpad_lib.c @@ -73,7 +73,7 @@ static int __prepare_exec(const char *appid, const char *app_path, /* CHECK PRIVACY */ ret = security_manager_prepare_app_privacy(appid); if (ret != SECURITY_MANAGER_SUCCESS) { - _W("Launching %s has been prohibited", appid); + _W("Launching %s has been denied.", appid); return -1; }