diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 21:09:22 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 21:09:22 +1000 |
commit | 194a1cb0189e41db76feb9363a89fe716f7cad97 (patch) | |
tree | bf75b2d2c92ecca27d79f2f3da3b42a33fd91438 /log.c | |
parent | e33b60343b7cef82ec229d7bfec008d3a932f2ad (diff) | |
download | openssh-git-194a1cb0189e41db76feb9363a89fe716f7cad97.tar.gz |
- stevesk@cvs.openbsd.org 2006/07/08 23:30:06
[log.c]
move user includes after /usr/include files
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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,14 +36,14 @@ #include "includes.h" -#include "log.h" -#include "xmalloc.h" - #include <syslog.h> #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) # include <vis.h> #endif +#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; |