From: Junghyun Yeon Date: Wed, 13 Sep 2017 05:44:42 +0000 (+0900) Subject: Change behavior of trust-anchor X-Git-Tag: accepted/tizen/4.0/unified/20171018.060917~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fappfw%2Fpkgmgr-info.git;a=commitdiff_plain;h=8aa19673fd894cacca7aaa1ee1aea1810c7f75b8 Change behavior of trust-anchor - Trust-anchor certificate file directory has fixed. - Remove pkg-certs-dir attribute due to change of its concept. Related changes: [app-installers] : https://review.tizen.org/gerrit/149836 [wgt-backend] : https://review.tizen.org/gerrit/149978 [tpk-manifest-handlers] : https://review.tizen.org/gerrit/150060 [wgt-manifest-handlers] : https://review.tizen.org/gerrit/150136 Change-Id: I746853898e3206ccc00cd543d3c7ca90c473feca Signed-off-by: Junghyun Yeon --- diff --git a/include/pkgmgrinfo_basic.h b/include/pkgmgrinfo_basic.h index cfb0f95..d3ffd50 100644 --- a/include/pkgmgrinfo_basic.h +++ b/include/pkgmgrinfo_basic.h @@ -212,7 +212,6 @@ typedef struct package_x { char *zip_mount_file; /*no xml part*/ char *backend_installer; /**< package backend installer, attr*/ char *external_path; /**< external storage path if exists, no xml part*/ - char *pkg_certs_dir; /**< pkg certificate directory, attr*/ char *use_system_certs; /**< use system certificates, attr*/ GList *icon; /**< package icon, element*/ GList *label; /**< package label, element*/ diff --git a/parser/manifest.xsd.in b/parser/manifest.xsd.in index 11144fa..19f9058 100644 --- a/parser/manifest.xsd.in +++ b/parser/manifest.xsd.in @@ -211,7 +211,6 @@ - diff --git a/parser/manifest.xsd.ref b/parser/manifest.xsd.ref index 90b9884..f012ab8 100644 --- a/parser/manifest.xsd.ref +++ b/parser/manifest.xsd.ref @@ -251,7 +251,6 @@ - diff --git a/src/pkgmgrinfo_basic.c b/src/pkgmgrinfo_basic.c index 9e94561..330b1da 100644 --- a/src/pkgmgrinfo_basic.c +++ b/src/pkgmgrinfo_basic.c @@ -451,8 +451,6 @@ API void pkgmgrinfo_basic_free_package(package_x *package) free((void *)package->external_path); if (package->support_mode) free((void *)package->support_mode); - if (package->pkg_certs_dir) - free((void *)package->pkg_certs_dir); if (package->use_system_certs) free((void *)package->use_system_certs);