From 09b5a3c02057fe9448c4e9494a99c93a61f98280 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Thu, 5 Sep 2013 14:50:10 +0200 Subject: [PATCH] Exit value 1 instead of a random non-zero value. --- src/tincctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tincctl.c b/src/tincctl.c index 6e7965c2..a6673901 100644 --- a/src/tincctl.c +++ b/src/tincctl.c @@ -1606,7 +1606,7 @@ static int cmd_config(int argc, char *argv[]) { if(action < 0 && !removed) { remove(tmpfile); fprintf(stderr, "No configuration variables deleted.\n"); - return *value; + return *value != 0; } // Replace the configuration file with the new one -- 2.20.1