From 5524ec220100d1ce776be327f6b792388327c456 Mon Sep 17 00:00:00 2001 From: Kim Date: Wed, 26 Oct 2016 07:58:57 +0800 Subject: [PATCH] Update local.c (#900) Setup default cipher instead of null --- src/local.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/local.c b/src/local.c index c30b8893..18801785 100644 --- a/src/local.c +++ b/src/local.c @@ -1315,6 +1315,10 @@ main(int argc, char **argv) exit(EXIT_FAILURE); } + if (method == NULL) { + method = "table"; + } + if (timeout == NULL) { timeout = "60"; }