diff mbox

[nftables,4/5] cli: add quit command

Message ID 1370169512-23500-5-git-send-email-eric@regit.org
State Accepted
Headers show

Commit Message

Eric Leblond June 2, 2013, 10:38 a.m. UTC
Signed-off-by: Eric Leblond <eric@regit.org>
---
 src/cli.c |    5 +++++
 1 file changed, 5 insertions(+)
diff mbox

Patch

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))