diff options
author | randomdan <randomdan@localhost> | 2011-07-15 15:31:18 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-07-15 15:31:18 +0000 |
commit | 2f7145c76ccd9f87c8ece15ecb248c77ae6ff5ed (patch) | |
tree | 66a14bfad90cb05c6095a8ce0b4c2492c5355a86 /project2/checkHost.cpp | |
parent | All new dynamic transformations and processing and tidyup and stuff (diff) | |
download | project2-2f7145c76ccd9f87c8ece15ecb248c77ae6ff5ed.tar.bz2 project2-2f7145c76ccd9f87c8ece15ecb248c77ae6ff5ed.tar.xz project2-2f7145c76ccd9f87c8ece15ecb248c77ae6ff5ed.zip |
Make *Host parse their XML document on first run of components, fixes sendmailTask not doing so by centralising it in a sensible place
Diffstat (limited to 'project2/checkHost.cpp')
-rw-r--r-- | project2/checkHost.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/project2/checkHost.cpp b/project2/checkHost.cpp index 05e7d58..cda07fc 100644 --- a/project2/checkHost.cpp +++ b/project2/checkHost.cpp @@ -21,6 +21,7 @@ CheckHost::~CheckHost() void CheckHost::runChecks() const { + parseDocument(); BOOST_FOREACH(const ParamCheckers::value_type & pc, parameterChecks) { if (!pc->performCheck()) { ApplicationEngine::getCurrent()->logMessage(false, pc->group(), pc->message()); |