diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-24 06:01:23 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-24 06:01:23 +0200 |
commit | e6b3b610ece508f565a114a60f6ce0edb70a5dd2 (patch) | |
tree | 56ae6e912a9aa1ebcb20e7155c093d84a34d5c48 /clientloop.c | |
parent | - stevesk@cvs.openbsd.org 2006/07/14 01:15:28 (diff) | |
download | openssh-e6b3b610ece508f565a114a60f6ce0edb70a5dd2.tar.xz openssh-e6b3b610ece508f565a114a60f6ce0edb70a5dd2.zip |
- 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 'clientloop.c')
-rw-r--r-- | clientloop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clientloop.c b/clientloop.c index 978289b61..9398dc989 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.168 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: clientloop.c,v 1.169 2006/07/17 01:31:09 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -75,6 +75,7 @@ #endif #include <signal.h> #include <termios.h> +#include <unistd.h> #include "ssh.h" #include "ssh1.h" |