init: Propagates cli, rules to CmdConfig

This commit is contained in:
Paul Beckingham 2016-05-03 00:32:54 -04:00
parent adae77e99e
commit 8bf0a2a0bc
3 changed files with 12 additions and 8 deletions

View file

@ -228,7 +228,7 @@ int dispatchCommand (
// command to fn mapping.
if (command == "cancel") status = CmdCancel ( rules, database );
else if (command == "clear") status = CmdClear ( );
else if (command == "config") status = CmdConfig ( );
else if (command == "config") status = CmdConfig (cli, rules );
else if (command == "continue") status = CmdContinue ( rules, database );
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);
else if (command == "export") status = CmdExport (cli, rules, database );