campaignd: Fix incorrect use of boost::replace_all()

This commit is contained in:
Ignacio R. Morelle 2016-10-16 13:12:25 -03:00
parent 3b52ae37fc
commit a686923261

View File

@ -45,7 +45,7 @@ std::string fast_interpolate_variables_into_string(const std::string &str, const
if(symbols) {
for(const plain_string_map::value_type& sym : *symbols) {
res = boost::replace_all(res, "$" + sym.first, sym.second);
boost::replace_all(res, "$" + sym.first, sym.second);
}
}