From: Abhishek Vijay Date: Mon, 17 Jun 2019 06:54:22 +0000 (+0530) Subject: correcting from samsung-account to tizen-account X-Git-Tag: submit/tizen/20190618.075052^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_5.5_mobile_hotfix;p=platform%2Fcore%2Faccount%2Faccount-parser.git correcting from samsung-account to tizen-account Change-Id: I177c60ada07ce8ad272fd5effbc1b4641aedb3d8 Signed-off-by: Abhishek Vijay --- diff --git a/src/account.c b/src/account.c index 779d304..8bf60b7 100644 --- a/src/account.c +++ b/src/account.c @@ -97,7 +97,7 @@ int _account_type_set_icon_path(xmlChar* account_icon, account_type_h handle, co if (g_strcmp0(account_type, ACCOUNT_TYPE_SAMSUNG) == 0) { icon_path = g_strdup_printf("%s%s", "/usr/apps/com.samsung.samsungaccount/shared/res/", (const char*)account_icon); } else if (g_strcmp0(account_type, ACCOUNT_TYPE_TIZEN) == 0) { - icon_path = g_strdup_printf("%s%s", "/usr/apps/com.samsung.samsungaccount/shared/res/", (const char*)account_icon); + icon_path = g_strdup_printf("%s%s", "/usr/apps/com.samsung.tizenaccount/shared/res/", (const char*)account_icon); } if (icon_path == NULL) { @@ -118,6 +118,7 @@ END: _D("_account_type_set_icon_path ends"); return ret; } + int _register_account_provider(xmlDocPtr docPtr, char* account_provider_app_id) { ENTER();