From b9ba10a15a2b4d6e7204a4d0067532f32240ad2b Mon Sep 17 00:00:00 2001 From: Yunjin Lee Date: Thu, 4 Jun 2015 14:14:35 +0900 Subject: [PATCH] Revert 'Modify cert visibility enum' - cert-svc is not ready Change-Id: I8a1ee351e692d05199334d88715751d4d87b4071 Signed-off-by: Yunjin Lee --- capi/include/privilege_manager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/capi/include/privilege_manager.h b/capi/include/privilege_manager.h index 7c08713..0e7f294 100755 --- a/capi/include/privilege_manager.h +++ b/capi/include/privilege_manager.h @@ -29,9 +29,9 @@ extern "C" { typedef enum { - PRVMGR_PACKAGE_VISIBILITY_PUBLIC = CERT_SVC_VISIBILITY_PUBLIC, - PRVMGR_PACKAGE_VISIBILITY_PARTNER = CERT_SVC_VISIBILITY_PARTNER, - PRVMGR_PACKAGE_VISIBILITY_PLATFORM = CERT_SVC_VISIBILITY_PLATFORM, + PRVMGR_PACKAGE_VISIBILITY_PUBLIC = 1 << 6, + PRVMGR_PACKAGE_VISIBILITY_PARTNER = 1 << 7, + PRVMGR_PACKAGE_VISIBILITY_PLATFORM = 1 << 10, } privilege_manager_visibility_e; typedef enum -- 2.7.4