From 10e67e3c1d52db7852d8304fe19b8062edc6761b Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Tue, 7 May 2013 16:59:56 +0200 Subject: [PATCH] Terminate batch processing in chronyc on quit command --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index 64c743f..ecaa819 100644 --- a/client.c +++ b/client.c @@ -2773,7 +2773,7 @@ process_args(int argc, char **argv, int multi) } ret = process_line(line, &quit); - if (!ret) + if (!ret || quit) break; }