summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cli.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cli.c b/src/cli.c
index a5a891e2..541c26ca 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -99,6 +99,11 @@ static void cli_complete(char *line)
if (*c == '\0')
return;
+ if (!strcmp(line, "quit")) {
+ cli_exit();
+ exit(0);
+ }
+
/* avoid duplicate history entries */
hist = history_get(history_length);
if (hist == NULL || strcmp(hist->line, line))