From 14677ab5ef6299f278d7ec3618f95a5303282170 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 29 Apr 2016 21:47:47 -0400 Subject: [PATCH] init: Dispatches to CmdCancel --- src/init.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 6a809d5d..81a7135a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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);