diff options
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c index 0e276f45737..05d73e70bb1 100644 --- a/usr.bin/ssh/log.c +++ b/usr.bin/ssh/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.31 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: log.c,v 1.32 2006/07/08 23:30:06 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -36,12 +36,12 @@ #include "includes.h" -#include "log.h" -#include "xmalloc.h" - #include <syslog.h> #include <vis.h> +#include "log.h" +#include "xmalloc.h" + static LogLevel log_level = SYSLOG_LEVEL_INFO; static int log_on_stderr = 1; static int log_facility = LOG_AUTH; |