Fix typo in debug log text

This commit is contained in:
Martin Vierula 2022-09-17 14:55:27 -07:00
parent 5d2b86c1b1
commit 222e09ea0b
No known key found for this signature in database
GPG Key ID: F2FC4E45883BCBA4

View File

@ -35,7 +35,7 @@ bool SetENV::evaluate(RuleWithActions *rule, Transaction *t) {
std::string colNameExpanded(m_string->evaluate(t));
auto pair = utils::string::ssplit_pair(colNameExpanded, '=');
ms_dbg_a(t, 8, "Setting envoriment variable: "
ms_dbg_a(t, 8, "Setting environment variable: "
+ pair.first + " to " + pair.second);
setenv(pair.first.c_str(), pair.second.c_str(), /*overwrite*/ 1);