init: Dispatches to CmdCancel

This commit is contained in:
Paul Beckingham 2016-04-29 21:47:47 -04:00
parent 1522af15e6
commit 14677ab5ef

View file

@ -221,7 +221,8 @@ int dispatchCommand (
{
// These signatures are æxpected to be all different, therefore no
// command to fn mapping.
if (command == "clear") status = CmdClear ( );
if (command == "cancel") status = CmdCancel ( rules, database );
else if (command == "clear") status = CmdClear ( );
else if (command == "config") status = CmdConfig ( );
else if (command == "continue") status = CmdContinue ( rules, database );
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);