From: Eric Leblond Date: Sun, 2 Jun 2013 10:03:13 +0000 (+0200) Subject: cli: add quit command X-Git-Tag: v0.099~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=725f3bc0faa2f9d1e7843d982f7a9123f635e9f6;p=thirdparty%2Fnftables.git cli: add quit command --- 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))