init: Propagated database to CmdConfig

This commit is contained in:
Paul Beckingham 2016-05-14 13:45:56 -04:00
parent 4d90aa7b2d
commit 510de67fd3
3 changed files with 8 additions and 7 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 (cli, rules, database );
else if (command == "config") status = CmdConfig (cli, rules );
else if (command == "config") status = CmdConfig (cli, rules, database );
else if (command == "continue") status = CmdContinue ( rules, database );
else if (command == "day") status = CmdReportDay (cli, rules, database );
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);