diff options
author | Damien Miller <djm@mindrot.org> | 2006-08-05 02:57:45 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-08-05 02:57:45 +0200 |
commit | 9aec91948d134745c29ff63d32d46ac2c367306a (patch) | |
tree | 7eabd48bafaea56e6dbe8337aad6ed975fec1fb1 /sshd.c | |
parent | - stevesk@cvs.openbsd.org 2006/07/25 02:01:34 (diff) | |
download | openssh-9aec91948d134745c29ff63d32d46ac2c367306a.tar.xz openssh-9aec91948d134745c29ff63d32d46ac2c367306a.zip |
- stevesk@cvs.openbsd.org 2006/07/25 02:59:21
[channels.c clientloop.c packet.c scp.c serverloop.c sftp-client.c]
[sftp-server.c ssh-agent.c ssh-keyscan.c sshconnect.c sshd.c]
move #include <sys/time.h> out of includes.h
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.339 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: sshd.c,v 1.340 2006/07/25 02:59:21 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -50,6 +50,9 @@ #endif #include <sys/ioctl.h> #include <sys/socket.h> +#ifdef HAVE_SYS_TIME_H +# include <sys/time.h> +#endif #include <sys/wait.h> #include <errno.h> |