Skip to content
Snippets Groups Projects
Commit 1c2bc912 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

config file: only allow GlobalInitFile option to hooks block, one more error check

parent 585c98e5
No related branches found
Tags
No related merge requests found
......@@ -220,9 +220,18 @@ ConfigFile::getConfigFileInfo(const string &config_file)
trim(tokenizedLine.back());
if (inHooks)
{
if (!tokenizedLine.front().compare("GlobalInitFile"))
if (global_init_file.empty())
global_init_file = tokenizedLine.back();
else
{
cerr << "ERROR: May not have more than one GlobalInitFile option in [hooks] block." << endl;
exit(EXIT_FAILURE);
}
else
{
cerr << "ERROR: Unrecognized option " << tokenizedLine.front() << " in [hooks] block." << endl;
exit(EXIT_FAILURE);
}
else
if (!tokenizedLine.front().compare("Name"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment