diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-12-15 22:19:41 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-12-15 22:19:41 +0800 |
commit | e6432b1262b399dcbf452b8ae0aa8204d36b24da (patch) | |
tree | 49c7d508f4d1fbfd6c3d079b607a4a8d39a754e6 | |
parent | 99bc4f451afc5a7a52e0e798d5b2a990189613fa (diff) |
unknown options should be non-fatal
-rw-r--r-- | cli-runopts.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |