From: shingil.kang Date: Tue, 28 Oct 2014 12:50:59 +0000 (+0900) Subject: SDB: Supported coretpk app type for 'sdb uninstall' command X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F32747%2F1;p=sdk%2Ftools%2Fsdb.git SDB: Supported coretpk app type for 'sdb uninstall' command Change-Id: I5d0b02064ec13725b2a83114cbbe3ae605394178 Signed-off-by: shingil.kang --- diff --git a/src/command_function.c b/src/command_function.c index 526f3e5..4f03c5b 100644 --- a/src/command_function.c +++ b/src/command_function.c @@ -791,7 +791,7 @@ static int get_pkgtype_from_app_id(const char* app_id) { *end_line = '\0'; } - if(strstr(buf, "[tpk]") != NULL) { + if(strstr(buf, "[tpk]") != NULL || strstr(buf, "[coretpk]") != NULL) { result = 1; } else if(strstr(buf, "[wgt]") != NULL) {