From b36aa63357356d5457a93d143d55ca6a1e919955 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Wed, 13 Jul 2016 18:00:37 +0900 Subject: [PATCH] Add missing methods to conf file Change-Id: Ic10783609bed76c0e615e5faba098b30271e5723 Signed-off-by: Sangyoon Jang --- org.tizen.pkgmgr.conf.in | 6 ++++++ src/request.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/org.tizen.pkgmgr.conf.in b/org.tizen.pkgmgr.conf.in index 637a054..9d799ca 100644 --- a/org.tizen.pkgmgr.conf.in +++ b/org.tizen.pkgmgr.conf.in @@ -36,5 +36,11 @@ + + + + + + diff --git a/src/request.c b/src/request.c index 0e4d073..c0ff811 100644 --- a/src/request.c +++ b/src/request.c @@ -1219,9 +1219,9 @@ static void __handle_method_call(GDBusConnection *connection, ret = __handle_request_cleardata(uid, invocation, parameters); else if (g_strcmp0(method_name, "move") == 0) ret = __handle_request_move(uid, invocation, parameters); - else if (g_strcmp0(method_name, "enable") == 0) + else if (g_strcmp0(method_name, "enable_pkg") == 0) ret = __handle_request_enable_pkg(uid, invocation, parameters); - else if (g_strcmp0(method_name, "disable") == 0) + else if (g_strcmp0(method_name, "disable_pkg") == 0) ret = __handle_request_disable_pkg(uid, invocation, parameters); else if (g_strcmp0(method_name, "getsize") == 0) ret = __handle_request_getsize(uid, invocation, parameters); -- 2.7.4