diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-07-12 14:22:46 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-07-12 14:22:46 +0200 |
commit | 39972493467dd9a32a117e85bcbff9aa1e7f3c8d (patch) | |
tree | 652f02d97e6237c0b0a7b202e60517bdc7c14720 /canohost.c | |
parent | - markus@cvs.openbsd.org 2006/07/11 18:50:48 (diff) | |
download | openssh-39972493467dd9a32a117e85bcbff9aa1e7f3c8d.tar.xz openssh-39972493467dd9a32a117e85bcbff9aa1e7f3c8d.zip |
- stevesk@cvs.openbsd.org 2006/07/11 20:07:25
[scp.c auth.c monitor.c serverloop.c sftp-server.c sshpty.c readpass.c
sshd.c monitor_wrap.c monitor_fdpass.c ssh-agent.c ttymodes.c atomicio.c
includes.h session.c sshlogin.c monitor_mm.c packet.c sshconnect2.c
sftp-client.c nchan.c clientloop.c sftp.c misc.c canohost.c channels.c
ssh-keygen.c progressmeter.c uidswap.c msg.c readconf.c sshconnect.c]
move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'canohost.c')
-rw-r--r-- | canohost.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/canohost.c b/canohost.c index 538b141b1..4566e2ab1 100644 --- a/canohost.c +++ b/canohost.c @@ -1,4 +1,4 @@ -/* $OpenBSD: canohost.c,v 1.55 2006/07/08 21:47:12 stevesk Exp $ */ +/* $OpenBSD: canohost.c,v 1.56 2006/07/11 20:07:25 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -20,6 +20,7 @@ #include <netinet/in.h> #include <ctype.h> +#include <errno.h> #include "packet.h" #include "xmalloc.h" |