diff options
Diffstat (limited to 'usr.bin/ssh/fatal.c')
-rw-r--r-- | usr.bin/ssh/fatal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/ssh/fatal.c b/usr.bin/ssh/fatal.c index 8eea85a03bd..78b51cd8b4c 100644 --- a/usr.bin/ssh/fatal.c +++ b/usr.bin/ssh/fatal.c @@ -32,6 +32,7 @@ void fatal(const char *fmt,...) { va_list args; + va_start(args, fmt); do_log(SYSLOG_LEVEL_FATAL, fmt, args); va_end(args); |