diff options
Diffstat (limited to 'project2/cgi/p2webCgi.cpp')
-rw-r--r-- | project2/cgi/p2webCgi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/cgi/p2webCgi.cpp b/project2/cgi/p2webCgi.cpp index 4f806b2..a8b47e8 100644 --- a/project2/cgi/p2webCgi.cpp +++ b/project2/cgi/p2webCgi.cpp @@ -19,7 +19,7 @@ main(void) CgiApplicationEngine app; GetEnv ge; CgiRequestContext crc(NULL, ge); - OptionsSource::loadSources(boost::bind(&HostnamePlatformIdentifier::derivedPlatform, boost::cref(CgiApplicationEngine::hpi), &crc)); + OptionsSource::loadSources(boost::bind(&CgiApplicationEngine::derivedPlatform, &crc)); Plugable::onAllComponents(boost::bind(&ComponentLoader::onBefore, _1)); app.process(std::cout, &crc); Plugable::onAllComponents(boost::bind(&ComponentLoader::onIteration, _1)); |