Revert 'Modify cert visibility enum' - cert-svc is not ready 60/40460/1 tizen_3.0.2015.q2_common accepted/tizen/common/20150605.080046 accepted/tizen/mobile/20150605.092224 accepted/tizen/tv/20150605.092129 accepted/tizen/wearable/20150605.092149 submit/tizen/20150604.054220
authorYunjin Lee <yunjin-.lee@samsung.com>
Thu, 4 Jun 2015 05:14:35 +0000 (14:14 +0900)
committerYunjin Lee <yunjin-.lee@samsung.com>
Thu, 4 Jun 2015 05:14:35 +0000 (14:14 +0900)
Change-Id: I8a1ee351e692d05199334d88715751d4d87b4071
Signed-off-by: Yunjin Lee <yunjin-.lee@samsung.com>
capi/include/privilege_manager.h

index 7c08713..0e7f294 100755 (executable)
@@ -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