summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/log.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-08 23:30:06 +0000
committerstevesk <stevesk@openbsd.org>2006-07-08 23:30:06 +0000
commit138a4359a895c0b5a4e63fa24bf9e353c205395a (patch)
treed6ec80a496febde8296c4d1296a17fa23929d725 /usr.bin/ssh/log.c
parentBe consistent about how we name 'struct unode' instances (diff)
downloadwireguard-openbsd-138a4359a895c0b5a4e63fa24bf9e353c205395a.tar.xz
wireguard-openbsd-138a4359a895c0b5a4e63fa24bf9e353c205395a.zip
move user includes after /usr/include files
Diffstat (limited to 'usr.bin/ssh/log.c')
-rw-r--r--usr.bin/ssh/log.c8
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;