Fix an incorrect error message in [clear_global_variable]

(cherry-picked from commit 6184489a65)
This commit is contained in:
Celtic Minstrel 2018-03-30 18:23:41 -04:00
parent b1e96b08dd
commit 755816c4a4

View file

@ -200,7 +200,7 @@ void verify_and_clear_global_variable(const vconfig &pcfg)
{
bool valid = true;
if (!pcfg.has_attribute("global")) {
ERR_PERSIST << "[clear_global_variable] missing required attribute \"from_global\"";
ERR_PERSIST << "[clear_global_variable] missing required attribute \"global\"";
valid = false;
}
if (!pcfg.has_attribute("namespace")) {