summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-24 14:01:23 +1000
committerDamien Miller <djm@mindrot.org>2006-07-24 14:01:23 +1000
commite6b3b610ece508f565a114a60f6ce0edb70a5dd2 (patch)
tree56ae6e912a9aa1ebcb20e7155c093d84a34d5c48 /log.c
parentdef915b0ff0228254da4b2f2442bab16aba414d4 (diff)
- stevesk@cvs.openbsd.org 2006/07/17 01:31:10
[authfd.c authfile.c channels.c cleanup.c clientloop.c groupaccess.c] [includes.h log.c misc.c msg.c packet.c progressmeter.c readconf.c] [readpass.c scp.c servconf.c sftp-client.c sftp-server.c sftp.c] [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh.c] [sshconnect.c sshlogin.c sshpty.c uidswap.c] move #include <unistd.h> out of includes.h
Diffstat (limited to 'log.c')
-rw-r--r--log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/log.c b/log.c
index 8702c3e52..4ad7cfff7 100644
--- a/log.c
+++ b/log.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: log.c,v 1.33 2006/07/10 16:37:36 stevesk Exp $ */ 1/* $OpenBSD: log.c,v 1.34 2006/07/17 01:31:09 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -38,6 +38,7 @@
38 38
39#include <stdarg.h> 39#include <stdarg.h>
40#include <syslog.h> 40#include <syslog.h>
41#include <unistd.h>
41#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) 42#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
42# include <vis.h> 43# include <vis.h>
43#endif 44#endif