]> granicus.if.org Git - icinga2/commitdiff
Rename $quit to $continue
authorGunnar Beutner <gunnar@beutner.name>
Mon, 9 Nov 2015 10:08:04 +0000 (11:08 +0100)
committerGunnar Beutner <gunnar@beutner.name>
Mon, 9 Nov 2015 10:08:35 +0000 (11:08 +0100)
refs #10559

lib/cli/consolecommand.cpp

index abcf8a17077420a96c5e1d607733d2d4a324b32d..8afe26016b808185861f142e9c5c788ee55702eb 100644 (file)
@@ -67,7 +67,7 @@ void ConsoleCommand::BreakpointHandler(ScriptFrame& frame, ScriptError *ex, cons
        }
 
        std::cout << "You can inspect expressions (such as variables) by entering them at the prompt.\n"
-                 << "To leave the debugger and continue the program use \"$quit\".\n";
+                 << "To leave the debugger and continue the program use \"$continue\".\n";
 
 #ifdef HAVE_EDITLINE
        rl_completion_entry_function = ConsoleCommand::ConsoleCompleteHelper;
@@ -265,7 +265,7 @@ incomplete:
                        line = commandOnce;
 
                if (!line.empty() && line[0] == '$') {
-                       if (line == "$quit")
+                       if (line == "$continue")
                                break;
 
                        std::cout << "Unknown debugger command: " << line << "\n";