0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00

For jsoncpp usage, rename deprecated misspelled method name:

getFormatedErrorMessages -> getFormattedErrorMessages
This commit is contained in:
James Yonan 2015-11-27 11:29:59 -07:00 committed by Lev Stipakov
parent ba18268dfc
commit 042c0194ac
No known key found for this signature in database
GPG Key ID: 88670BE258B9C258

View File

@ -37,7 +37,7 @@ namespace openvpn {
Json::Value root;
Json::Reader reader;
if (!reader.parse(str, root, false))
OPENVPN_THROW(json_parse, title << " : " << reader.getFormatedErrorMessages());
OPENVPN_THROW(json_parse, title << " : " << reader.getFormattedErrorMessages());
return root;
}