diff options
Diffstat (limited to 'svr-session.c')
-rw-r--r-- | svr-session.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svr-session.c b/svr-session.c index ea9ca7e..f777b5f 100644 --- a/svr-session.c +++ b/svr-session.c @@ -204,7 +204,7 @@ void svr_dropbear_log(int priority, const char* format, va_list param) { vsnprintf(printbuf, sizeof(printbuf), format, param); #ifndef DISABLE_SYSLOG - if (svr_opts.usingsyslog) { + if (opts.usingsyslog) { syslog(priority, "%s", printbuf); } #endif @@ -215,8 +215,7 @@ void svr_dropbear_log(int priority, const char* format, va_list param) { havetrace = debug_trace; #endif - if (!svr_opts.usingsyslog || havetrace) - { + if (!opts.usingsyslog || havetrace) { struct tm * local_tm = NULL; timesec = time(NULL); local_tm = localtime(×ec); |