From: Jaeho Lee Date: Fri, 14 Dec 2012 13:52:51 +0000 (+0900) Subject: fixed pkg type bug X-Git-Tag: 2.1b_release~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f13f523092ad6298cdeb6a732bb474ee6b23ae47;p=framework%2Fappfw%2Faul-1.git fixed pkg type bug Signed-off-by: Jaeho Lee --- diff --git a/am_daemon/amd_appinfo.c b/am_daemon/amd_appinfo.c index f016739..58c436c 100755 --- a/am_daemon/amd_appinfo.c +++ b/am_daemon/amd_appinfo.c @@ -147,7 +147,7 @@ static int __app_info_insert_handler (const pkgmgrinfo_appinfo_h handle, void *d r = pkgmgrinfo_appinfo_get_apptype(handle, &type); if(strncmp(type, "capp", 4) == 0 ) { c->val[_AI_TYPE] = strdup("rpm"); - } else if (strncmp(type, "c++app", 6) == 0 || strncmp(type, "ospapp", 6)) { + } else if (strncmp(type, "c++app", 6) == 0 || strncmp(type, "ospapp", 6) == 0) { c->val[_AI_TYPE] = strdup("tpk"); } else if (strncmp(type, "webapp", 6) == 0) { c->val[_AI_TYPE] = strdup("wgt"); diff --git a/packaging/aul.spec b/packaging/aul.spec index 23bfcac..dd0fa5d 100644 --- a/packaging/aul.spec +++ b/packaging/aul.spec @@ -1,6 +1,6 @@ Name: aul Summary: App utility library -Version: 0.0.219 +Version: 0.0.220 Release: 1 Group: System/Libraries License: Apache License, Version 2.0