From 2f65c55c7c21c34a776916c40afd851717ea4767 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Mon, 9 May 2016 14:17:18 +0900 Subject: [PATCH] Fix a bug on parsing manifest Store label at 'text' member. ('name' is not used at pkgmgr-info) Change-Id: I90e7c24d47ee2c9e066775d0b37da3486c2ac11e Signed-off-by: Sangyoon Jang --- src/common/step/configuration/step_parse_manifest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/step/configuration/step_parse_manifest.cc b/src/common/step/configuration/step_parse_manifest.cc index 3840216..cc222f7 100644 --- a/src/common/step/configuration/step_parse_manifest.cc +++ b/src/common/step/configuration/step_parse_manifest.cc @@ -195,7 +195,7 @@ bool StepParseManifest::FillPackageInfo(manifest_x* manifest) { label->lang = strdup(pair.first.c_str()); else label->lang = strdup(DEFAULT_LOCALE); - label->name = strdup(pair.second.c_str()); + label->text = strdup(pair.second.c_str()); manifest->label = g_list_append(manifest->label, label); } -- 2.7.4