Signed-off-by: Sungbae <sungbae.yoo@samsung.com>
Change-Id: Ic7eb5f16cbc07c2fc34aa0f6c6620636e6728baa
std::string item = word.substr(0, equal);
std::string value = word.substr(equal + 1);
- if (item == "msg")
+ if (item == "msg") {
+ if (value[value.size() - 1] != '\'') {
+ getline(tok, word, '\'');
+ value += " " + word + '\'';
+ }
msg = value.substr(1, value.size() - 2);
+ }
}
// TODO : If the format given by user access control is specified,