From e6432b1262b399dcbf452b8ae0aa8204d36b24da Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Tue, 15 Dec 2015 22:19:41 +0800 Subject: [PATCH] unknown options should be non-fatal --- cli-runopts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli-runopts.c b/cli-runopts.c index fad9428..d70a4e1 100644 --- a/cli-runopts.c +++ b/cli-runopts.c @@ -888,5 +888,5 @@ static void add_extendedopt(const char* origstr) { } #endif - dropbear_exit("Bad configuration option '%s'", origstr); + dropbear_log(LOG_WARNING, "Ignoring unknown configuration option '%s'", origstr); }