Signed-off-by: Eric Leblond <eric@xxxxxxxxx> --- src/cli.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cli.c b/src/cli.c index a5a891e..541c26c 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)) -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html